tvcharts 0.7.67 → 0.7.69

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.
@@ -73,7 +73,7 @@ var AxisPointerView = /** @class */function (_super) {
73
73
  if (currTrigger === 'mouseup') {
74
74
  _this.xLock = false;
75
75
  }
76
- var updatePointDisable = globalTooltipModel.option.updatePointDisable;
76
+ var updatePointDisable = globalTooltipModel && globalTooltipModel.option.updatePointDisable;
77
77
  if (updatePointDisable) {
78
78
  return;
79
79
  }
@@ -50,6 +50,7 @@ var TableModel = /** @class */function (_super) {
50
50
  var _this = _super !== null && _super.apply(this, arguments) || this;
51
51
  _this.type = TableModel.type;
52
52
  _this.ableDataZoomUpdate = false;
53
+ _this.preventAutoZ = true;
53
54
  return _this;
54
55
  }
55
56
  TableModel.prototype.mergeTables = function (tables) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tvcharts",
3
- "version": "0.7.67",
3
+ "version": "0.7.69",
4
4
  "description": "基于echarts5.5.0二次开发",
5
5
  "license": "Apache-2.0",
6
6
  "keywords": [
@@ -50,6 +50,7 @@ declare class TableModel extends ComponentModel<TableOption> {
50
50
  static type: "table";
51
51
  type: "table";
52
52
  ableDataZoomUpdate: boolean;
53
+ preventAutoZ: boolean;
53
54
  static defaultOption: TableOption;
54
55
  mergeTables(tables: ITable[]): void;
55
56
  setAbleDataZoomUpdate(ableDataZoomUpdate: boolean): void;