y method

VlChartMark y(
  1. String field
)

Position along the vertical axis.

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