impaktapps-ui-builder 0.0.382-alpha.47 → 0.0.382-alpha.48

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.
@@ -9240,30 +9240,7 @@ const HorizontalBarGraph = {
9240
9240
  widget: "Graph"
9241
9241
  },
9242
9242
  config: {
9243
- main: {
9244
- header: " ",
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
- }
9266
- }
9243
+ main: {}
9267
9244
  }
9268
9245
  };
9269
9246
  const buildHorizontalBarGraph = (config, componentScope) => {
@@ -9411,7 +9388,7 @@ const buildStackbarGraph = (config, componentScope) => {
9411
9388
  barGraph.config.layout = createLayoutFormat(config.layout);
9412
9389
  }
9413
9390
  if (config.legendHide) {
9414
- barGraph.config.main.legendAvailable = false;
9391
+ barGraph.config.main.legendAvailable = config.legendHide;
9415
9392
  }
9416
9393
  barGraph.config.main.type = config.graphType;
9417
9394
  barGraph.config.main.header = config.heading;