fill method

VlChartMark fill(
  1. String field
)

Fill colour, set apart from the outline.

Names a COLUMN, never a constant. .color("red") means a column called red; painting a mark red is markColor.

field The column name.

Returns This mark, so channels chain.

See also stroke.

Implementation

VlChartMark fill(String field) {
  return this.channel("fill", field);
}