The labels on an axis.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
[SerializableAttribute]
public class AxisLabel : ChartNode
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class AxisLabel _
	Inherits ChartNode
Visual C++
[SerializableAttribute]
public ref class AxisLabel : public ChartNode

Remarks

AxisLabel is created by Axis1D as its child. It can be retrieved using the method AxisLabel.

Axis labels are placed at the tick mark locations. The number of tick marks is determined by the attribute "Number". Tick marks are evenly spaced. If the attribute "Labels" is defined then it is used to label the tick marks.

If "Labels" is not defined, the ticks are labeled numerically. The endpoint label values are obtained from the attribute "Window". The numbers are formatted using the attribute "TextFormat".

Text attributes (specified with CultureInfo, NumberFormatInfo.CurrentInfo and DateTimeFormatInfo.CurrentInfo members) in this node control the drawing of the axis labels.

Inheritance Hierarchy

See Also