configureSeries method

  1. @override
void configureSeries(
  1. List<MutableSeries<D>> seriesList
)

Performs basic configuration for the series, before it is pre-processed.

Typically, a series renderer should assign color mapping functions to series that do not have them.

Implementation

@override
void configureSeries(List<MutableSeries<D>> seriesList) {
  assignMissingColors(seriesList, emptyCategoryUsesSinglePalette: false);
}