x method

VlChart x(
  1. String field
)

Position along the horizontal 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 view, so channels chain.

Implementation

VlChart x(String field) {
  return this.channel("x", field);
}