height method

VlChart height(
  1. int value
)

How tall the plotting area is, in pixels.

value The height.

Returns This chart, so calls chain.

Implementation

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