impaktapps-ui-builder 0.0.97-alpha.16 → 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.
- package/dist/impaktapps-ui-builder.es.js +2 -2
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +1 -1
|
@@ -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.
|
|
10302
|
+
horizontalBarGraph.config.style.barStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
|
|
10303
10303
|
}
|
|
10304
10304
|
if (config.xAxisValue) {
|
|
10305
10305
|
horizontalBarGraph.config.main.xAxisValue = config.xAxisValue;
|
|
@@ -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.
|
|
10478
|
+
barGraph.config.style.barStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
|
|
10479
10479
|
}
|
|
10480
10480
|
if (config.xAxisValue) {
|
|
10481
10481
|
barGraph.config.main.xAxisValue = config.xAxisValue;
|