type method

VlChartMark type(
  1. String kind
)

States what the column holds, when the data cannot say.

A column of years is numbers and is usually a category, which is the case this exists for.

kind quantitative, nominal, ordinal or temporal.

Returns This mark, so calls chain.

Implementation

VlChartMark type(String kind) {
  return this.setOnCursor("type", VlJson.stringValue(kind));
}