highlightValues method

void highlightValues(
  1. List<Highlight> highs
)

Highlights the values at the given indices in the given DataSets. Provide null or an empty array to undo all highlighting. This should be used to programmatically highlight values. This method will not call the listener.

@param highs

Implementation

void highlightValues(List<Highlight> highs) {
  // set the indices to highlight
  _indicesToHighlight = highs;
}