updateAngularAxis method

PolarChartConfig updateAngularAxis(
  1. PolarCategoryAxisConfig update(
    1. PolarCategoryAxisConfig current
    )
)

Rebuilds PolarChartConfig.angularAxis from its current value.

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

Implementation

PolarChartConfig updateAngularAxis(
  PolarCategoryAxisConfig Function(PolarCategoryAxisConfig current) update,
) => copyWith(angularAxis: update(angularAxis));