stack method

VlChartMark stack(
  1. String how
)

How marks sharing a position are stacked.

how zero, normalize or center.

Returns This mark, so calls chain.

See also noStack.

Implementation

VlChartMark stack(String how) {
  return this.setOnCursor("stack", VlJson.stringValue(how));
}