setValueTextColors method

void setValueTextColors(
  1. List<Color> colors
)

Sets the same list of value-colors for all DataSets this data object contains.

@param colors

Implementation

void setValueTextColors(List<ui.Color> colors) {
  for (IDataSet set in _dataSets) {
    set.setValueTextColors(colors);
  }
}