unhighlightSeries method

void unhighlightSeries(
  1. int seriesIndex
)

Implementation

void unhighlightSeries(int seriesIndex) {
  if (_disposed) return;
  if (_highlightedSeries.remove(seriesIndex)) {
    _notifyIfAlive();
  }
}