MoveAnchorY()
<< Click to Display Table of Contents >> MoveAnchorY() |
Moves an anchor's y value from start point by a delta point amount.
This method does not return a value.
<ChartAnchor>.MoveAnchorY(Point startPoint, Point deltaPoint, ChartControl chartControl, ChartScale chartScale)
startPoint |
The chart anchor's original starting point value |
deltaPoint |
The chart anchor's new point value to be updated |
chartControl |
A ChartControl representing the x-axis |
chartScale |
A ChartScale representing the y-axis |
//move only the chart anchors Y (price) value MyAnchor.MoveAnchorY(lastPoint, newPoint, chartControl, chartPanel, chartScale); |