Hierarchy

  • XAxis

Properties

axisLine: XAxisAxisLine

An object defining properties for the axis line.

baselineScaling: string

Defines whether the axis baseline starts at the minimum value of the data or at zero. Only applies to numerical data axes.

dataMax: number

Normally the chart code must go through the data to calculate the max value, which is in turn used to generate the axis max. If the max value is already known then the max value calculation can be avoided by setting dataMax, which improves performance.

dataMin: number

The minimum data value corresponding to an axis. If specified, the automatic axis extent calculation will use this value. Only applies to numerical axes.

majorTick: XAxisMajorTick

An object defining properties for the major tick marks.

max: string | number

The maximum value of the axis. Defaults to null for automatic calculation based on the data. See the Help documentation for more information.

maxSize: string

Defines the maximum size of the axis in pixels (e.g. '50px') or percent (e.g. '15%').

min: string | number

The minimum value of the axis. Defaults to null for automatic calculation based on the data. See the Help documentation for more information.

minStep: number

The minimum increment between major tick marks. This is typically used to prevent fractional axis values for discrete measures. Only applies to numerical axes.

minorStep: number

The increment between minor tick marks. Defaults to null for automatic calculation based on the data. Only applies to numerical axes. See the Help documentation for more information.

minorTick: XAxisMinorTick

An object defining properties for the minor tick marks.

referenceObjects: XAxisReferenceObjects[]

The array of reference objects associated with the axis.

rendered: string

Defines whether the axis is rendered.

scale: string

Defines the axis scale. Only applies to numerical axes.

size: string

Defines the size of the axis in pixels (e.g. '50px') or percent (e.g. '15%').

step: number

The increment between major tick marks. Defaults to null for automatic calculation based on the data. Only applies to time and numerical axes. See the Help documentation for more information.

tickLabel: XAxisTickLabel

An object defining the properties of the tick labels.

title: string

The axis title. Does not apply to polar charts.

titleStyle: object

The CSS style object defining the style of the axis title.

viewportEndGroup: string | number

Specifies the end group of the current viewport. Only applies to charts with group or time axis. If not specified, the default end group is the last group in the data set. The application should set either the viewportMax or viewportEndGroup and not both at the same time. If both viewportEndGroup and viewportMax are specified, viewportMax takes precedence.

viewportMax: string | number

Specifies the maximum x coordinate of the current viewport for zoom and scroll. See the Help documentation for more information.

viewportMin: string | number

Specifies the minimum x coordinate of the current viewport for zoom and scroll. See the Help documentation for more information.

viewportStartGroup: string | number

Specifies the start group of the current viewport. Only applies to charts with group or time axis. If not specified, the default start group is the first group in the data set. The application should set either the viewportMin or viewportStartGroup and not both at the same time. If both viewportStartGroup and viewportMin are specified, viewportMin takes precedence.

Generated using TypeDoc