@bnsights/bbsf-admin-portal 1.0.75 → 1.0.76

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/README.md CHANGED
@@ -5,6 +5,10 @@ BBSF Admin Portal package is part of BBSF 3 packages. It hosts all the angular m
5
5
  For more info please visit [BBSF documentation](https://bnsightsprojects.visualstudio.com/BBSF%203/_wiki/wikis/BBSF-3.wiki/65/BBSF-Documentation)
6
6
 
7
7
  # Change Log
8
+ ## 1.0.76 / 20-2-2023
9
+ ===================
10
+ * Fix Survey Graph Bugs
11
+
8
12
  ## 1.0.75 / 14-2-2023
9
13
  ===================
10
14
  * Update controls version
@@ -29732,6 +29732,7 @@
29732
29732
  var yAxis = chart.yAxes.push(am5xy__namespace.ValueAxis.new(root, {
29733
29733
  baseValue: 0,
29734
29734
  maxPrecision: 0,
29735
+ min: 0,
29735
29736
  extraTooltipPrecision: 100,
29736
29737
  renderer: am5xy__namespace.AxisRendererY.new(root, {})
29737
29738
  }));
@@ -29786,7 +29787,7 @@
29786
29787
  if (Object.prototype.hasOwnProperty.call(item.results, key)) {
29787
29788
  var value = item.results[key];
29788
29789
  var object = {
29789
- category: ">=" + key,
29790
+ category: "<=" + key,
29790
29791
  value: value
29791
29792
  };
29792
29793
  data.push(object);
@@ -29796,6 +29797,7 @@
29796
29797
  var yAxis = chart.yAxes.push(am5xy__namespace.ValueAxis.new(root, {
29797
29798
  baseValue: 0,
29798
29799
  maxPrecision: 0,
29800
+ min: 0,
29799
29801
  extraTooltipPrecision: 100,
29800
29802
  renderer: am5xy__namespace.AxisRendererY.new(root, {})
29801
29803
  }));