OptionalcategoriesOptionalnamesThe other place Highcharts keeps a category axis' labels.
An axis declared categories: [...] fills categories and leaves this
empty. An axis declared type: 'category' -- the spelling Highcharts'
own documentation uses for a chart of named tuples -- does the reverse:
it collects the point names here and leaves categories an empty
array, which is truthy and indexes to undefined (#1146).
Read through declaredCategories() rather than directly, so that
"what does the axis call slot 2" has one answer.
OptionalisOptionalreversedWhether the axis runs the other way — the resolved value, which
Highcharts copies from options.reversed and also sets by itself on an
inverted chart's x axis.
OptionaltopRendered distance from the chart top in px (present after render).
OptionalleftRendered distance from the chart left in px (present after render).
OptionalheightRendered axis height in px (present after render).
OptionalwidthRendered axis width in px (present after render).
Optionaltitle?: { text?: string }Optionaltype?: stringOptionalreversed?: booleanDeclares HighchartsAxis.reversed; read as its fallback.
OptionalplotLines?: { value?: number }[]Reference lines drawn across the plot — the significance cutoff of a volcano or Manhattan plot, which is the only place either chart states where its threshold is.
OptionalplotBands?: { from?: number; to?: number; label?: { text?: string }; className?: string }[]Qualitative bands drawn behind the axis — the shaded zones of a gauge
or a bullet chart. Highcharts names one only in styled mode (via
className) or through a label, so both are read.
Represents an axis in a Highcharts chart.