background method

VlChart background(
  1. String colour
)

The colour behind the plot.

colour A CSS colour.

Returns This chart, so calls chain.

Implementation

VlChart background(String colour) {
  this.props.setMember("background", VlJson.stringValue(colour));
  return this;
}