impaktapps-ui-builder 0.0.382-alpha.51 → 0.0.382-alpha.53

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9360,7 +9360,11 @@ const buildPieGraph = (config, componentScope) => {
9360
9360
  pieGraph.config.main.tooltipDataKey = flatObjectValueInArray(config.legendLabels);
9361
9361
  }
9362
9362
  if (config.pieArcColors) {
9363
- pieGraph.config.style.pieStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
9363
+ pieGraph.config.style = {
9364
+ pieStyle: {
9365
+ colorRange: flatObjectValueInArray(config.pieArcColors)
9366
+ }
9367
+ };
9364
9368
  }
9365
9369
  return pieGraph;
9366
9370
  };