ChartSet in MixedChart.

interface ChartSet<T> {
    Chart: T;
    data: ConstructorParameters<T>[0];
    options?: ConstructorParameters<T>[1];
}

Type Parameters

  • T extends typeof BaseSimpleChart

    The type of the chart. Should be a subclass of BaseSimpleChart.

Properties

Properties

Chart: T

The type of the chart.

data: ConstructorParameters<T>[0]

The data of the chart.

options?: ConstructorParameters<T>[1]

The options of the chart.