logitude-dashboard-library 3.1.109 → 3.1.111

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/index.js CHANGED
@@ -3032,7 +3032,7 @@ function getDefaultChartInfo(widget) {
3032
3032
  chart.labelDisplay = widget.XAxisLabelsDisplay ? widget.XAxisLabelsDisplay : "Auto";
3033
3033
  chart.slantLabel = "1";
3034
3034
  chart.labelFontSize = widget.XAxisLabelsFontSize ? widget.XAxisLabelsFontSize + "" : "10";
3035
- chart.showValues = widget.ShowValue ? "1" : '0';
3035
+ chart.showValues = "1";
3036
3036
  chart.valuePosition = widget.ShowValue && widget.ValuePosition ? widget.ValuePosition : 'Outside';
3037
3037
  var isValuePositionInside = widget.ShowValue && widget.ValuePosition && widget.ValuePosition.toLowerCase() == 'inside';
3038
3038
 
@@ -3621,7 +3621,10 @@ var FusionChart = React.forwardRef(function (props, comRef) {
3621
3621
  };
3622
3622
 
3623
3623
  var ReRenderChartAgain = function ReRenderChartAgain() {
3624
+ console.log("Before Second Render");
3625
+
3624
3626
  if (!showChart.current && isShowValueActivated()) {
3627
+ console.log("After Second Render");
3625
3628
  setFusionKey(uuid.v4());
3626
3629
  showChart.current = true;
3627
3630
  }