markColor method

VlChartMark markColor(
  1. String value
)

Paints every mark one colour, rather than reading a column.

value A CSS colour.

Returns This mark, so calls chain.

See also color.

Implementation

VlChartMark markColor(String value) {
  return this.propString("color", value);
}