MindFusion.Charting Programmer's Guide

RadarChart.MaxValue Property

See Also
 





Gets or sets the end value at the inner axis.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public double MaxValue { get; set; }

Visual Basic  Copy Code

Public Property MaxValue As Double

 Property Value

A double value.

 Remarks

The property specifies the end value for the inner axis. Together with MinValue and Span it is used for calculating the scale divisions of the inner axis. If max value is not set, the maximum 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 MaxValue property is Double.NaN.

 See Also