viz.core.AxisConfig
export interface AxisConfig {
/** Show this axis */
show?: boolean;
/** Axis label */
label?: string;
/** Number of ticks (default: 5) */
tickCount?: number;
/** Custom tick values */
tickValues?: number[];
/** Format function for tick labels */
tickFormat?: (value: number) => string;
/** Tick label font size */
fontSize?: number;
/** Tick length in pixels */
tickLength?: number;
}show(boolean)optional- – Show this axis
label(string)optional- – Axis label
tickCount(number)optional- – Number of ticks (default: 5)
tickValues(number[])optional- – Custom tick values
tickFormat((value: number) => string)optional- – Format function for tick labels
fontSize(number)optional- – Tick label font size
tickLength(number)optional- – Tick length in pixels