OrdinalComboChart constructor

const OrdinalComboChart(
  1. List<Series<dynamic, String>> seriesList, {
  2. Key? key,
  3. bool? animate,
  4. Duration? animationDuration,
  5. AxisSpec? domainAxis,
  6. NumericAxisSpec? primaryMeasureAxis,
  7. NumericAxisSpec? secondaryMeasureAxis,
  8. SeriesRendererConfig<String>? defaultRenderer,
  9. List<SeriesRendererConfig<String>>? customSeriesRenderers,
  10. List<ChartBehavior<String>>? behaviors,
  11. List<SelectionModelConfig<String>>? selectionModels,
  12. RTLSpec? rtlSpec,
  13. LayoutConfig? layoutConfig,
  14. bool defaultInteractions = true,
})

Creates an ordinal combo chart with the given series of data.

seriesList The list of series to be plotted on the chart. animate Whether to animate the chart when data changes. animationDuration The duration of the animation when data changes. domainAxis The domain axis to use for the chart. If not provided, a default ordinal axis will be used. primaryMeasureAxis The primary measure axis to use for the chart. If not provided, a default numeric axis will be used. secondaryMeasureAxis The secondary measure axis to use for the chart, if needed. defaultRenderer The default renderer to use for the series. customSeriesRenderers Custom renderers for specific series, if needed. behaviors A list of chart behaviors to attach to the chart. selectionModels A list of selection models to attach to the chart. rtlSpec Configures the chart for right-to-left languages. layoutConfig Configuration for chart layout. defaultInteractions Whether to add the default interactions to the chart.

Implementation

const OrdinalComboChart(
  super.seriesList, {
  super.key,
  super.animate,
  super.animationDuration,
  super.domainAxis,
  super.primaryMeasureAxis,
  super.secondaryMeasureAxis,
  super.defaultRenderer,
  super.customSeriesRenderers,
  super.behaviors,
  super.selectionModels,
  super.rtlSpec,
  super.layoutConfig,
  super.defaultInteractions,
});