impaktapps-ui-builder 0.0.592-alpha.8 → 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.
- package/dist/impaktapps-ui-builder.es.js +6 -0
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +3 -3
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +3 -0
|
@@ -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
|
}
|