MindFusion.Charting Programmer's Guide

AxisSettings.AxisDelta Property

See Also
 





Specifies the interval between labels at the chart axis.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public double AxisDelta { get; set; }

Visual Basic  Copy Code

Public Property AxisDelta As Double

 Property Value

A double number that represents the interval.

 Remarks

The property specifies the interval between scale divisions at the chart axis. The control uses this property together with MinValue and MaxValue to calculate the auto scale.

The numbers at the axis are formatted with the DataFormat property. If it is set to show DateTime values, the scale divisions must be specified with StartDateTime, EndDateTime and TimeSpan.

Default value for the AxisDelta property is Double.NaN, that is, the interval is calculated automatically.

 See Also