detail method

VlChart 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 view, so channels chain.

Implementation

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