highlightSeries method

void highlightSeries(
  1. int seriesIndex
)

Implementation

void highlightSeries(int seriesIndex) {
  if (_disposed) return;
  if (_highlightedSeries.add(seriesIndex)) {
    _notifyIfAlive();
  }
}