title method

VlChart title(
  1. String label
)

The axis or legend label for the shared cursor channel.

label The label.

Returns This chart, so calls chain.

See also heading.

Implementation

VlChart title(String label) {
  return this.setOnCursor("title", VlJson.stringValue(label));
}