text method

VlChartMark text(
  1. String field
)

The text a label mark shows.

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.

Implementation

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