didUpdateWidget method

  1. @override
void didUpdateWidget(
  1. covariant SfPyramidChart oldWidget
)
override

Called whenever the widget configuration changes.

If the parent widget rebuilds and requests that this location in the tree update display a new widget with the same runtimeType and Widget.key, the framework will update the widget property of this State object to refer to the new widget and then call this method with the previous widget as an argument.

Override this method to respond when the widget changes.

The framework always calls build after calling didUpdateWidget, which means any calls to setState in didUpdateWidget are redundant.

  • In didUpdateWidget unsubscribe from the old object and subscribe to the new one if the updated widget configuration requires replacing the object.

Here it is called whenever the series collection gets updated in SfPyramidChart.

Implementation

@override
void didUpdateWidget(SfPyramidChart oldWidget) {
  //Update and maintain the series state, when we update the series in the series collection //
  _createAndUpdateSeriesRenderer(oldWidget);
  final TooltipRenderingDetails tooltipRenderingDetails =
      TooltipHelper.getRenderingDetails(
          _stateProperties.renderingDetails.tooltipBehaviorRenderer);
  if (tooltipRenderingDetails.chartTooltipState != null) {
    tooltipRenderingDetails.show = false;
  }
  super.didUpdateWidget(oldWidget);
  _stateProperties.renderingDetails.widgetNeedUpdate = true;
}