Skip to main content

Interface: AxesOptions

Defined in: mobjects/graphing/Axes.ts:16

Options for creating Axes

Extended by

Properties

axisConfig?

optional axisConfig: Partial<NumberLineOptions>

Defined in: mobjects/graphing/Axes.ts:28

Common configuration for both axes


color?

optional color: string

Defined in: mobjects/graphing/Axes.ts:26

Stroke color for axes. Default: '#ffffff'


tipLength?

optional tipLength: number

Defined in: mobjects/graphing/Axes.ts:36

Length of arrow tips. Default: 0.25


tips?

optional tips: boolean

Defined in: mobjects/graphing/Axes.ts:34

Whether to include arrow tips on axes. Default: true


xAxisConfig?

optional xAxisConfig: Partial<NumberLineOptions>

Defined in: mobjects/graphing/Axes.ts:30

Configuration specific to x-axis (overrides axisConfig)


xLength?

optional xLength: number

Defined in: mobjects/graphing/Axes.ts:22

Visual length of the x-axis. Default: 10


xRange?

optional xRange: [number, number] | [number, number, number]

Defined in: mobjects/graphing/Axes.ts:18

X-axis range as [min, max] or [min, max, step]. Default: [-5, 5, 1]


yAxisConfig?

optional yAxisConfig: Partial<NumberLineOptions>

Defined in: mobjects/graphing/Axes.ts:32

Configuration specific to y-axis (overrides axisConfig)


yLength?

optional yLength: number

Defined in: mobjects/graphing/Axes.ts:24

Visual length of the y-axis. Default: 6


yRange?

optional yRange: [number, number] | [number, number, number]

Defined in: mobjects/graphing/Axes.ts:20

Y-axis range as [min, max] or [min, max, step]. Default: [-3, 3, 1]