stroke method
- String field
Outline colour, set apart from the fill.
Names a COLUMN, never a constant. .color("red") means a column
called red; painting a mark red is markColor.
field The column name.
Returns This mark, so channels chain.
See also fill.
Implementation
VlChartMark stroke(String field) {
return this.channel("stroke", field);
}