propString method

VlChartMark propString(
  1. String key,
  2. String value
)

Sets any string property of the mark itself.

key The property name. value The value.

Returns This mark, so calls chain.

Implementation

VlChartMark propString(String key, String value) {
  this.props.setMember(key, VlJson.stringValue(value));
  return this;
}