secondaryMeasureAxisSpec property

void secondaryMeasureAxisSpec=(NumericAxisSpec? axisSpec)

Sets the secondary measure axis for the chart, rendered on the end side of the domain axis.

Implementation

set secondaryMeasureAxisSpec(NumericAxisSpec? axisSpec) {
  _newSecondaryMeasureAxisSpec = axisSpec;

  // Must set the spec to the current axis instance in the case of
  // errant reads that expect the spec to be changed.
  axisSpec?.configure(_secondaryMeasureAxis, context, graphicsFactory!);
}