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