ps-toolkit-ui 1.11.25 → 1.11.26
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 +4 -0
- 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 +5 -1
- package/fesm2015/ps-toolkit-ui.js +4 -0
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/chart.class.d.ts +1 -0
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -8516,6 +8516,10 @@
|
|
|
8516
8516
|
this.options = this.merge(opt, cOpt);
|
|
8517
8517
|
this.chart = Highcharts.chart(this.name + 'Chart', this.options);
|
|
8518
8518
|
};
|
|
8519
|
+
ChartClass.prototype.setChartArea = function (opt) {
|
|
8520
|
+
this.options = opt;
|
|
8521
|
+
this.chart = Highcharts.chart(this.name + 'Chart', this.options);
|
|
8522
|
+
};
|
|
8519
8523
|
ChartClass.prototype.destroy = function () {
|
|
8520
8524
|
if (this.chart !== null) {
|
|
8521
8525
|
this.chart.destroy();
|