setValueTextColor method

void setValueTextColor(
  1. Color color
)

Sets the color of the value-text (color in which the value-labels are drawn) for all DataSets this data object contains.

@param color

Implementation

void setValueTextColor(ui.Color color) {
  for (IDataSet set in _dataSets) {
    set.setValueTextColor(color);
  }
}