propFlag method

VlChartMark propFlag(
  1. String key,
  2. bool value
)

Sets any boolean property of the mark itself.

key The property name. value The value.

Returns This mark, so calls chain.

Implementation

VlChartMark propFlag(String key, bool value) {
  this.props.setMember(key, VlJson.boolValue(value));
  return this;
}