@esfaenza/es-charts 11.2.15 → 11.2.16
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/bundles/esfaenza-es-charts.umd.js +2 -0
- package/bundles/esfaenza-es-charts.umd.js.map +1 -1
- package/bundles/esfaenza-es-charts.umd.min.js +1 -1
- package/bundles/esfaenza-es-charts.umd.min.js.map +1 -1
- package/esm2015/lib/services/classes/LineChartService.js +3 -1
- package/fesm2015/esfaenza-es-charts.js +2 -0
- package/fesm2015/esfaenza-es-charts.js.map +1 -1
- package/package.json +1 -1
|
@@ -1491,6 +1491,7 @@
|
|
|
1491
1491
|
range.label.text = dataConverted.limit.upperLabel;
|
|
1492
1492
|
range.label.fill = range.grid.stroke;
|
|
1493
1493
|
range.label.verticalCenter = "bottom";
|
|
1494
|
+
range.label.stroke = am4core__namespace.color(dataConverted.limit.upperColor || "#F92200");
|
|
1494
1495
|
range.grid.stroke = am4core__namespace.color(dataConverted.limit.upperColor || "#F92200");
|
|
1495
1496
|
range.grid.strokeWidth = 2;
|
|
1496
1497
|
range.grid.strokeOpacity = 1;
|
|
@@ -1502,6 +1503,7 @@
|
|
|
1502
1503
|
range.label.text = dataConverted.limit.lowerLabel;
|
|
1503
1504
|
range.label.fill = range.grid.stroke;
|
|
1504
1505
|
range.label.verticalCenter = "bottom";
|
|
1506
|
+
range.label.stroke = am4core__namespace.color(dataConverted.limit.lowerColor || "#F92200");
|
|
1505
1507
|
range.grid.stroke = am4core__namespace.color(dataConverted.limit.lowerColor || "#F92200");
|
|
1506
1508
|
range.grid.strokeWidth = 2;
|
|
1507
1509
|
range.grid.strokeOpacity = 1;
|