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