primaryMeasureAxisSpec property
set
primaryMeasureAxisSpec
(NumericAxisSpec? axisSpec)
Sets the primary measure axis for the chart, rendered on the start side of the domain axis.
Implementation
set primaryMeasureAxisSpec(NumericAxisSpec? axisSpec) {
_newPrimaryMeasureAxisSpec = 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(_primaryMeasureAxis, context, graphicsFactory!);
}