overrideXAxis(options)
overrideXAxis set the x-axis configuration.
Reference
typescript
(
xAxis?: {
name?: string
scrollZoomEnabled?: boolean
createTicks?: (params: object) => Array<{
coord: number
value: number | string
text: string
}>
}
) => voidParameters
optionsX-axis configuration.nameThe name of the axis.scrollZoomEnabledWhether to allow scrolling and zooming.createTicksCreate ticks information callback method.
Returns
overrideXAxis returns undefined .