we want to select some data points from scatter chart and use the right click menu system to perform some operation on the selected points. Is that possible?
thanks,
zongwen
Sorry, the chart doesn't support any type of selection out of the box. It's possible to create a workaround, but it will require quite a bit of custom logic and having to handle FillSceneGraph.
You will have to handle FillSceneGraph. In there you need to implement a selection rectangle (this will require a combination of mouse events and fillscenegraph event). You will have to create a collection of "selected" points and draw these points over the existing scatter points in order to give the selected effect.