radius method

VlChartMark radius(
  1. String field
)

How far from the centre an arc reaches.

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 theta.

Implementation

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