Interface ChartConfig<T>

Configuration passed to the chart.

Includes options and data.

interface ChartConfig<T> {
    data: ChartTabularData;
    options: T;
}

Type Parameters

Properties

Properties

Data for the chart.

options: T

Chart options configuration.