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

public override void OnCalculateMinMax()
{
if (DrawingState != DrawingState.Building)
{
//set the minimum value to the chart anchors price
MinValue = Anchor.Price;
}
}