setData method
Implementation
@override
void setData(int index, ChartSegment segment) {
  super.setData(index, segment);
  segment as BarSegment<T, D>
    ..series = this
    ..x = xValues[index]
    ..y = yValues[index]
    ..bottom = bottom
    ..isEmpty = isEmpty(index);
}