XY Chart NET 3 Control Reference
PlotDoubleClick Event

This event is generated whenever the user double-clicks the mouse (left, middle, or right button) over the plot area.  Refer to Chart Overview for an illustration of XY Chart NET's major components.

If Y-Stacking is being used, the chart will display more than one plot area.  In this case, a PlotDoubleClick event will not be raised if the gap between the plots is double-clicked on.  Instead, a DoubleClick event is raised.

Syntax
[Visual Basic]
Event PlotDoubleClick(Index As Integer, xPos As Integer, yPos As Integer)
[C#]
PlotDoubleClick(int Index, int xPos, int yPos)
[C++]
PlotDoubleClick(System::Int32 Index, System::Int32 xPos, System::Int32 yPos)
       
Parameters
Index
A value greater than -1 indicates the graph's y-stacked index.  Y-stacked graphs are drawn with index 0 at the top, then index 1, and so on.
xPos
Indicates the x-position within the chart in pixels.
yPos
Indicates the y-position within the chart in pixels.
Remarks
A PlotClick event is also generated during a double-click over the plot.  It is generated before the PlotDoubleClick event is raised.
See Also

 

 


© 2003 - 2013 ControlEng Corporation. All rights reserved.