axisOrient method

VlChartMark axisOrient(
  1. String side
)

Which side of the plot the cursor channel's axis stands on.

A Pareto chart's cumulative line is measured up the right-hand side, which is the whole point of drawing it there.

side left, right, top or bottom.

Returns This mark, so calls chain.

Implementation

VlChartMark axisOrient(String side) {
  VlJson axis = VlJson.objectValue();
  axis.setMember("orient", VlJson.stringValue(side));
  return this.setOnCursor("axis", axis);
}