OnMouseDown()
<< Click to Display Table of Contents >> OnMouseDown() |
An event driven method which is called any time the mouse pointer over the chart control has the mouse button pressed.
This method does not return a value.
Note: For a combined single click operation, i.e. mouse down click, move and release the dataPoint reported will always be the initial starting one. |
public override void OnMouseDown(ChartControl chartControl, ChartPanel chartPanel, ChartScale chartScale, ChartAnchor dataPoint)
{
}
chartControl |
A ChartControl representing the x-axis |
chartPanel |
A ChartPanel representing the the panel for the chart |
chartScale |
A ChartScale representing the y-axis |
dataPoint |
A ChartAnchor representing a point where the user clicked |
public override void OnMouseDown(ChartControl chartControl, ChartPanel chartPanel, ChartScale chartScale, ChartAnchor dataPoint) |