type method

VlChart type(
  1. String kind
)

States what a shared channel's column holds, when the data cannot say.

kind quantitative, nominal, ordinal or temporal.

Returns This chart, so calls chain.

Implementation

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