impaktapps-ui-builder 0.0.592-alpha.7 → 0.0.592-alpha.9

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.
@@ -10241,6 +10241,9 @@ const buildHorizontalBarGraph = (config, componentScope) => {
10241
10241
  if (config.barColor) {
10242
10242
  horizontalBarGraph.config.barStyle.color = config.barColor;
10243
10243
  }
10244
+ if (config.xAxisValue) {
10245
+ horizontalBarGraph.config.main.xAxisValue = config.xAxisValue;
10246
+ }
10244
10247
  if (config.containerBackground) {
10245
10248
  horizontalBarGraph.config.containerStyle.background = config.containerBackground;
10246
10249
  }
@@ -10394,6 +10397,9 @@ const buildStackbarGraph = (config, componentScope) => {
10394
10397
  if (config.barColor) {
10395
10398
  barGraph.config.barStyle.color = config.barColor;
10396
10399
  }
10400
+ if (config.xAxisValue) {
10401
+ barGraph.config.main.xAxisValue = config.xAxisValue;
10402
+ }
10397
10403
  if (config.height) {
10398
10404
  barGraph.config.style.containerStyle.height = config.height;
10399
10405
  }
@@ -11836,6 +11842,7 @@ const buildUiSchema = (config, store2) => {
11836
11842
  elements = buildPieGraph(config, componentScope);
11837
11843
  break;
11838
11844
  case "HorizontalBarGraph":
11845
+ case "HorizontalStackBarGraph":
11839
11846
  elements = buildHorizontalBarGraph(config, componentScope);
11840
11847
  break;
11841
11848
  }