markOpacity method

VlChartMark markOpacity(
  1. double value
)

How opaque every mark is drawn, as one number rather than from a column.

value 0 to 1.

Returns This mark, so calls chain.

See also opacity.

Implementation

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