xOffset method

VlChartMark xOffset(
  1. String field
)

What separates the bars of a grouped bar chart, across 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 mark, so channels chain.

See also yOffset.

Implementation

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