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.
@@ -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();