MindFusion.Charting Programmer's Guide

RadarChart.Span Property

See Also
 





Specifies the numerical span of scale division at the inner axes.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public double Span { get; set; }

Visual Basic  Copy Code

Public Property Span As Double

 Property Value

A double value.

 Remarks

The property specifies the span between scale divisions at the inner chart axes. The start and end values of the inner axis scale are set with MinValue and MaxValue.

The inner axis is one of the chart radiuses. Its position is specified with InnerAxisPosition.

The chart has as many inner axes as the count of elements in the longest series added to Data is. Only the axis at InnerAxisPosition has labels.

When the InnerAxisLabelType is set to AxisLabelType.AutoScale, the scale divisions are drawn. They are formatted with InnerLabelFormat.

Default value for the Span property is Double.NaN.

 See Also