categoryLabels property

set categoryLabels (Range? value)

sets the category labels for the chart.

Implementation

// ignore: avoid_setters_without_getters
set categoryLabels(Range? value) {
  final ChartSeriesCollection coll = _chart.series;
  final int iLen = coll.count;
  for (int i = 0; i < iLen; i++) {
    coll[i].categoryLabels = value;
  }
}