populateDataSource method

  1. @override
void populateDataSource([
  1. List<ChartValueMapper<T, num>>? yPaths,
  2. List<List<num>>? chaoticYLists,
  3. List<List<num>>? yLists,
  4. List<ChartValueMapper<T, Object>>? fPaths,
  5. List<List<Object?>>? fLists,
])
override

Implementation

@override
void populateDataSource([
  List<ChartValueMapper<T, num>>? yPaths,
  List<List<num>>? chaoticYLists,
  List<List<num>>? yLists,
  List<ChartValueMapper<T, Object>>? fPaths,
  List<List<Object?>>? fLists,
]) {
  minimumValues.clear();
  maximumValues.clear();
  upperValues.clear();
  lowerValues.clear();

  medianValues.clear();
  meanValues.clear();
  outliersValues.clear();

  super.populateDataSource(yPaths, chaoticYLists, yLists, fPaths, fLists);
  populateChartPoints();
}