impaktapps-ui-builder 0.0.97-alpha.16 → 0.0.97-alpha.18
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 +9 -7
- 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/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +7 -5
- 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
- package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +7 -5
|
@@ -10225,7 +10225,7 @@ const BarGraph = {
|
|
|
10225
10225
|
main: {
|
|
10226
10226
|
legendLabels: null
|
|
10227
10227
|
},
|
|
10228
|
-
style: { containerStyle: {},
|
|
10228
|
+
style: { containerStyle: {}, barStyle: {} }
|
|
10229
10229
|
}
|
|
10230
10230
|
};
|
|
10231
10231
|
const PieGraph = {
|
|
@@ -10240,7 +10240,10 @@ const PieGraph = {
|
|
|
10240
10240
|
type: "PieGraph",
|
|
10241
10241
|
legendLabels: null
|
|
10242
10242
|
},
|
|
10243
|
-
style: {
|
|
10243
|
+
style: {
|
|
10244
|
+
containerStyle: {},
|
|
10245
|
+
pieStyle: {}
|
|
10246
|
+
}
|
|
10244
10247
|
}
|
|
10245
10248
|
};
|
|
10246
10249
|
const LineGraph = {
|
|
@@ -10257,8 +10260,6 @@ const LineGraph = {
|
|
|
10257
10260
|
},
|
|
10258
10261
|
style: {
|
|
10259
10262
|
containerStyle: {},
|
|
10260
|
-
headerStyle: {},
|
|
10261
|
-
labelStyle: {},
|
|
10262
10263
|
lineStyle: {}
|
|
10263
10264
|
}
|
|
10264
10265
|
}
|
|
@@ -10276,7 +10277,8 @@ const HorizontalBarGraph = {
|
|
|
10276
10277
|
legendLabels: null
|
|
10277
10278
|
},
|
|
10278
10279
|
style: {
|
|
10279
|
-
|
|
10280
|
+
containerStyle: {},
|
|
10281
|
+
barStyle: {}
|
|
10280
10282
|
}
|
|
10281
10283
|
}
|
|
10282
10284
|
};
|
|
@@ -10299,7 +10301,7 @@ const buildHorizontalBarGraph = (config, componentScope) => {
|
|
|
10299
10301
|
horizontalBarGraph.config.main.legendLabels = flatObjectValueInArray(config.legendLabels);
|
|
10300
10302
|
}
|
|
10301
10303
|
if (config.pieArcColors) {
|
|
10302
|
-
horizontalBarGraph.config.style.
|
|
10304
|
+
horizontalBarGraph.config.style.barStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
|
|
10303
10305
|
}
|
|
10304
10306
|
if (config.xAxisValue) {
|
|
10305
10307
|
horizontalBarGraph.config.main.xAxisValue = config.xAxisValue;
|
|
@@ -10475,7 +10477,7 @@ const buildStackbarGraph = (config, componentScope) => {
|
|
|
10475
10477
|
barGraph.config.main.legendLabels = flatObjectValueInArray(config.legendLabels);
|
|
10476
10478
|
}
|
|
10477
10479
|
if (config.pieArcColors) {
|
|
10478
|
-
barGraph.config.style.
|
|
10480
|
+
barGraph.config.style.barStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
|
|
10479
10481
|
}
|
|
10480
10482
|
if (config.xAxisValue) {
|
|
10481
10483
|
barGraph.config.main.xAxisValue = config.xAxisValue;
|