width method

VlChart width(
  1. int value
)

How wide the plotting area is, in pixels.

value The width.

Returns This chart, so calls chain.

Implementation

VlChart width(int value) {
  this.props.setMember("width", VlJson.intValue(value));
  return this;
}