withPoints method

VlChartMark withPoints(
  1. bool value
)

Draws a line showing the points it was drawn through.

value True to show them.

Returns This mark, so calls chain.

Implementation

VlChartMark withPoints(bool value) {
  return this.propFlag("point", value);
}