MindFusion.Charting Programmer's Guide

RadarChart.MinValue Property

See Also
 





Gets or sets the start value of the inner axis.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public double MinValue { get; set; }

Visual Basic  Copy Code

Public Property MinValue As Double

 Property Value

A double value.

 Remarks

The property specifies the start value for the auto scale of the inner axis. Together with MaxValue and Span it is used for calculating the scale divisions of the inner axis. If MinValue is not set, the minimum number of all data series added to the Data property is considered.

The scale divisions can be drawn as labels at the inner axis, when the InnerAxisLabelType is set to AxisLabelType.AutoScale. The format of the numbers is set with InnerLabelFormat.

Default value for the MinValue property is Double.NaN.

 See Also