Sub OnSeriesDoubleClick(Sender: Object; Args: IScene3DSeriesClickEventArgs);
Begin
//Set of operators
End Sub OnSeriesDoubleClick;
Sender - parameter that returns the component that has generated the event.
Args - parameter that enables the user to determine event parameters.
The OnSeriesDoubleClick event occurs when the series of the scene is double-clicked on the form.
Sub Chart3DBox1OnSeriesDoubleClick(Sender: Object; Args: IScene3DSeriesClickEventArgs);
Begin
text := "";
For i := 0 To Args.SeriesCount - 1 Do
For j := 0 To Args.PointsCount(i) - 1 Do
text := text + "SerieName = " + Args.SerieName(i) + " PointName = " + Args.PointName(i, j);
End For;
End For;
End Sub Chart3DBox1OnSeriesDoubleClick;
On double-clicking a scene series the form title displays names of selected points and series.
See also: