order method

VlChartMark order(
  1. String field
)

The order the rows are drawn in, and the order a line joins its points.

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