updateIntervalStyle method

PolarColumnChartSeries updateIntervalStyle(
  1. PolarColumnIntervalStyle update(
    1. PolarColumnIntervalStyle current
    )
)

Rebuilds PolarColumnChartSeries.intervalStyle from its current value.

update receives the current PolarColumnIntervalStyle and returns the replacement, so nested configuration is edited without re-stating the enclosing config.

Implementation

PolarColumnChartSeries updateIntervalStyle(
  PolarColumnIntervalStyle Function(PolarColumnIntervalStyle current) update,
) => copyWith(intervalStyle: update(intervalStyle));