ICartesianChartParameters interface

Parameters for a Cartesian chart component with X and Y axes.

Extends

Properties

xAxis

Parameters for the X axis of the chart.

yAxis

Parameters for the Y axis of the chart.

Property Details

xAxis

Parameters for the X axis of the chart.

xAxis?: IAxis<T>;

Property Value

IAxis<T>

Remarks

This includes positions on xAxis to be represented as ticks, and a formatter function for the data point labels.

yAxis

Parameters for the Y axis of the chart.

yAxis?: IAxis<number>;

Property Value

IAxis<number>

Remarks

This includes positions on yAxis to be represented as ticks, and a formatter function for the data point labels.