shape method

VlChartMark shape(
  1. String field
)

The symbol a point is drawn as.

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 shape(String field) {
  return this.channel("shape", field);
}