title method

VlChartMark title(
  1. String label
)

The axis or legend label for the cursor channel.

label The label.

Returns This mark, so calls chain.

Implementation

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