ps-toolkit-ui 1.11.26 → 1.11.27
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 -6
- 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 -7
- package/fesm2015/ps-toolkit-ui.js +3 -6
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/chart.class.d.ts +0 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -8516,10 +8516,6 @@
|
|
|
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
|
-
};
|
|
8523
8519
|
ChartClass.prototype.destroy = function () {
|
|
8524
8520
|
if (this.chart !== null) {
|
|
8525
8521
|
this.chart.destroy();
|
|
@@ -8527,8 +8523,9 @@
|
|
|
8527
8523
|
};
|
|
8528
8524
|
ChartClass.prototype.getSymbol = function (point) {
|
|
8529
8525
|
var marker = null;
|
|
8530
|
-
|
|
8531
|
-
|
|
8526
|
+
var symbol = point.point.graphic && point.point.graphic.symbolName ? point.point.graphic.symbolName : point.point.series && point.point.series.symbol ? point.point.series.symbol : null;
|
|
8527
|
+
if (symbol != null) {
|
|
8528
|
+
switch (symbol) {
|
|
8532
8529
|
case 'circle':
|
|
8533
8530
|
marker = '●';
|
|
8534
8531
|
break;
|