Interface for a class Chart3DAxis
number
Specifies the index of the column where the axis is associated,
when the chart area is divided into multiple plot areas by using columns
.
<div id='Chart3D'></div>
let chart3D: Chart3D = new Chart3D({
...
columns: [{ width: '50%' },
{ width: '50%' }],
axes: [{
name: 'xAxis 1',
columnIndex: 1,
}],
...
});
chart3D.appendTo('#Chart3D');
number
With this property, you can request axis to calculate intervals approximately equal to your specified interval.
Specifies the position of labels at the edge of the axis.They are,
boolean
Specifies the Trim property for an axis.
number
Specifies the interval for an axis.
Specifies the types like Years
, Months
, Days
, Hours
, Minutes
, Seconds
in date time axis.They are,
boolean
Specifies indexed category axis.
boolean
It specifies whether the axis to be rendered in inversed manner or not.
string
Used to format the axis label that accepts any global string format like ‘C’, ‘n1’, ‘P’ etc. It also accepts placeholder like ‘{value}°C’ in which value represent the axis label, e.g, 20°C.
Specifies the actions like None
, Hide
, Trim
, Wrap
, MultipleRows
, Rotate45
, and Rotate90
when the axis labels intersect with each other.They are,
number
Specifies the labelPadding from axis.
Specifies the placement of a label for category axis. They are,
number
The angle to which the axis label gets rotated.
Options to customize the axis label.
number
The base value for logarithmic axis. It requires valueType
to be Logarithmic
.
Options for customizing major grid lines.
Options for customizing major tick lines.
Object
Specifies the maximum range of an axis.
number
Specifies the maximum width of an axis label.
number
The maximum number of label count per 100 pixels with respect to the axis length.
Object
Specifies the minimum range of an axis.
Options for customizing minor grid lines.
Options for customizing minor tick lines.
number
Specifies the number of minor ticks per interval.
string
Unique identifier of an axis. To associate an axis with the series, set this name to the xAxisName/yAxisName properties of the series.
boolean
If set to true, the axis will render at the opposite side of its default position.
number
Left and right padding for the plot area in pixels.
number
Bottom padding for the plot area in pixels.
number
Left padding for the plot area in pixels.
number
Right padding for the plot area in pixels.
number
Top padding for the plot area in pixels.
Specifies the padding for the axis range in terms of interval.They are,
number
Specifies the index of the row where the axis is associated, when the chart area is divided into multiple plot areas by using rows
.
<div id='Chart3D'></div>
let chart3D: Chart3D = new Chart3D({
...
rows: [{ height: '50%' },
{ height: '50%' }],
axes: [{
name: 'yAxis 1',
rowIndex: 1,
}],
...
});
chart3D.appendTo('#Chart3D');
string
Specifies the skeleton format in which the dateTime format will process.
It specifies the type of format to be used in dateTime format process.
number
Specifies the number of columns
or rows
an axis has to span horizontally or vertically.
boolean
It specifies whether the axis to be start from zero.
string
Specifies the title of an axis.
number
Specifies the titlePadding from axis label.
number
Defines an angle to rotate axis title. By default, angle auto calculated based on position and orientation of axis.
Options for customizing the axis title.
Specifies the data types that the axis can handle:
boolean
If set to true, axis label will be visible.