propString method
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;
}