innerRadius method

VlChartMark innerRadius(
  1. double value
)

The hole in the middle of an arc, which is what turns a pie into a donut.

value The inner radius in pixels.

Returns This mark, so calls chain.

Implementation

VlChartMark innerRadius(double value) {
  return this.propNumber("innerRadius", value);
}