MinValue

View as Markdown

Definition

The minimum value used for the automatic scaling of the y axis. This property will only be used when the chart object is set to IsAutoScale.

Property Value

A double value.

Syntax

MinValue

Examples

1public override void OnCalculateMinMax()
2{
3 if (DrawingState != DrawingState.Building)
4 {
5 //set the minimum value to the chart anchors price
6 MinValue = Anchor.Price;
7 }
8}