ps-toolkit-ui 1.5.72 → 1.5.73
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/ps-toolkit-ui.umd.js +3 -1
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/chart.class.js +4 -2
- package/fesm2015/ps-toolkit-ui.js +3 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -7878,7 +7878,9 @@
|
|
|
7878
7878
|
this.chart = Highcharts.chart(this.name + 'Chart', this.options);
|
|
7879
7879
|
};
|
|
7880
7880
|
ChartClass.prototype.destroy = function () {
|
|
7881
|
-
this.chart
|
|
7881
|
+
if (this.chart !== null) {
|
|
7882
|
+
this.chart.destroy();
|
|
7883
|
+
}
|
|
7882
7884
|
};
|
|
7883
7885
|
ChartClass.prototype.getSymbol = function (point) {
|
|
7884
7886
|
var marker = null;
|