This is the base class for the Axis object.

Namespace:  Nasosoft.Chart.Drawing
Assembly:  Nasosoft.Chart.Drawing (in Nasosoft.Chart.Drawing.dll)

Syntax

Visual Basic (Declaration)
Public Class Axis _
	Inherits AxisSectionBase
C#
public class Axis : AxisSectionBase
Visual C++
public ref class Axis : public AxisSectionBase
JavaScript
Nasosoft.Chart.Drawing.Axis = function();

Type.createClass(
	'Nasosoft.Chart.Drawing.Axis',
	Nasosoft.Chart.Drawing.AxisSectionBase);

Remarks

Axes are one of the most important aspects in a chart since they provide users with a visual means to read and analyze data. Therefore, a charting tool must provide mechanisms to manipulate axis settings programmatically.

Inheritance Hierarchy

System..::.Object
  Nasosoft.Chart.Drawing..::.AxisSectionBase
    Nasosoft.Chart.Drawing..::.Axis
      Nasosoft.Chart.Drawing..::.AxisX
      Nasosoft.Chart.Drawing..::.AxisY

See Also