impaktapps-ui-builder 0.0.382-alpha.47 → 0.0.382-alpha.49
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 -23
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +4 -4
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +0 -21
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +21 -21
|
@@ -9241,28 +9241,7 @@ const HorizontalBarGraph = {
|
|
|
9241
9241
|
},
|
|
9242
9242
|
config: {
|
|
9243
9243
|
main: {
|
|
9244
|
-
|
|
9245
|
-
type: "HorizontalBarGraph",
|
|
9246
|
-
bottomLabel: " ",
|
|
9247
|
-
leftLabel: "Value",
|
|
9248
|
-
axisLeft: false,
|
|
9249
|
-
axisBottom: true,
|
|
9250
|
-
hideBottomTicks: false,
|
|
9251
|
-
hideLeftTicks: false,
|
|
9252
|
-
hideLeftAxisLine: true,
|
|
9253
|
-
hideBottomAxisLine: false,
|
|
9254
|
-
bottomAxisWidth: "10px"
|
|
9255
|
-
},
|
|
9256
|
-
style: {
|
|
9257
|
-
containerStyle: {
|
|
9258
|
-
width: "100%"
|
|
9259
|
-
},
|
|
9260
|
-
headerStyle: {},
|
|
9261
|
-
tooltipStyle: {},
|
|
9262
|
-
labelStyle: {},
|
|
9263
|
-
barStyle: {
|
|
9264
|
-
color: "#6c5efb"
|
|
9265
|
-
}
|
|
9244
|
+
type: "HorizontalBarGraph"
|
|
9266
9245
|
}
|
|
9267
9246
|
}
|
|
9268
9247
|
};
|
|
@@ -9411,7 +9390,7 @@ const buildStackbarGraph = (config, componentScope) => {
|
|
|
9411
9390
|
barGraph.config.layout = createLayoutFormat(config.layout);
|
|
9412
9391
|
}
|
|
9413
9392
|
if (config.legendHide) {
|
|
9414
|
-
barGraph.config.main.legendAvailable =
|
|
9393
|
+
barGraph.config.main.legendAvailable = config.legendHide;
|
|
9415
9394
|
}
|
|
9416
9395
|
barGraph.config.main.type = config.graphType;
|
|
9417
9396
|
barGraph.config.main.header = config.heading;
|