detail method

VlChartMark detail(
  1. String field
)

Groups the rows without drawing anything of its own: one line per group, no legend.

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