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

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.
@@ -9232,7 +9232,11 @@ const buildHorizontalBarGraph = (config, componentScope) => {
9232
9232
  horizontalBarGraph.config.containerStyle.background = config.containerBackground;
9233
9233
  }
9234
9234
  if (config.height) {
9235
- horizontalBarGraph.config.style.containerStyle.height = config.height;
9235
+ horizontalBarGraph.config.style = {
9236
+ containerStyle: {
9237
+ height: config.height
9238
+ }
9239
+ };
9236
9240
  }
9237
9241
  if (config.bottomLabel) {
9238
9242
  horizontalBarGraph.config.main.bottomLabel = config.bottomLabel;
@@ -9341,7 +9345,11 @@ const buildPieGraph = (config, componentScope) => {
9341
9345
  pieGraph.config.layout = createLayoutFormat(config.layout);
9342
9346
  }
9343
9347
  if (config.height) {
9344
- pieGraph.config.style.containerStyle.height = config.height;
9348
+ pieGraph.config.style = {
9349
+ containerStyle: {
9350
+ height: config.height
9351
+ }
9352
+ };
9345
9353
  }
9346
9354
  if (config.legendHide) {
9347
9355
  pieGraph.config.main.legendAvailabe = config.legendHide === "YES" ? false : true;