updatePolarStyle method
- PolarColumnStyle update(
- PolarColumnStyle current
Rebuilds PolarColumnChartSeries.polarStyle from its current value.
update receives the current PolarColumnStyle and returns the replacement, so
nested configuration is edited without re-stating the enclosing config.
Implementation
PolarColumnChartSeries updatePolarStyle(
PolarColumnStyle Function(PolarColumnStyle current) update,
) => copyWith(polarStyle: update(polarStyle));