Interface ChartConfig<T>

Configuration passed to the chart.

Includes options and data.

interface ChartConfig<T extends interfaces.AxisChartOptions> {
    data: interfaces.ChartTabularData;
    options: T;
}

Type Parameters

Properties

Properties

Data for the chart.

options: T

Chart options configuration.