impaktapps-ui-builder 0.0.97-alpha.15 → 0.0.97-alpha.17

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.
@@ -10299,7 +10299,7 @@ const buildHorizontalBarGraph = (config, componentScope) => {
10299
10299
  horizontalBarGraph.config.main.legendLabels = flatObjectValueInArray(config.legendLabels);
10300
10300
  }
10301
10301
  if (config.pieArcColors) {
10302
- horizontalBarGraph.config.style.lineStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
10302
+ horizontalBarGraph.config.style.barStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
10303
10303
  }
10304
10304
  if (config.xAxisValue) {
10305
10305
  horizontalBarGraph.config.main.xAxisValue = config.xAxisValue;
@@ -10437,7 +10437,7 @@ const buildPieGraph = (config, componentScope) => {
10437
10437
  };
10438
10438
  }
10439
10439
  if (config.legendHide) {
10440
- pieGraph.config.main.legendAvailabe = config.legendHide === "YES" ? false : true;
10440
+ pieGraph.config.main.legendAvailable = config.legendHide === "YES" ? false : true;
10441
10441
  }
10442
10442
  pieGraph.scope = componentScope;
10443
10443
  pieGraph.config.main.header = config.heading;
@@ -10475,7 +10475,7 @@ const buildStackbarGraph = (config, componentScope) => {
10475
10475
  barGraph.config.main.legendLabels = flatObjectValueInArray(config.legendLabels);
10476
10476
  }
10477
10477
  if (config.pieArcColors) {
10478
- barGraph.config.style.lineStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
10478
+ barGraph.config.style.barStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
10479
10479
  }
10480
10480
  if (config.xAxisValue) {
10481
10481
  barGraph.config.main.xAxisValue = config.xAxisValue;
@@ -11347,7 +11347,7 @@ const buildLineGraph = (config, componentScope) => {
11347
11347
  lineGraph.config.main.leftLabel = config.leftLabel;
11348
11348
  }
11349
11349
  if (config.legendHide) {
11350
- lineGraph.config.main.legendAvailabe = config.legendHide === "YES" ? false : true;
11350
+ lineGraph.config.main.legendAvailable = config.legendHide === "YES" ? false : true;
11351
11351
  }
11352
11352
  if (config.bottomAxisAngle) {
11353
11353
  lineGraph.config.main.bottomAxisAngle = config.bottomAxisAngle === "YES" ? true : false;