tvcharts 0.8.76 → 0.8.77
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.
|
@@ -134,6 +134,7 @@ var GraphicComponentView = /** @class */function (_super) {
|
|
|
134
134
|
var _this = this;
|
|
135
135
|
// const globalZ = graphicModel.get('z');
|
|
136
136
|
// const globalZLevel = graphicModel.get('zlevel');
|
|
137
|
+
var elMap = this._elMap;
|
|
137
138
|
var existList = graphicModel.option.elements || [];
|
|
138
139
|
existList.filter(function (item) {
|
|
139
140
|
return item.getDataZoomElements;
|
|
@@ -145,6 +146,11 @@ var GraphicComponentView = /** @class */function (_super) {
|
|
|
145
146
|
if (element.getElementLabels) {
|
|
146
147
|
item.getElementLabels = element.getElementLabels;
|
|
147
148
|
}
|
|
149
|
+
var el = elMap.get(item.id);
|
|
150
|
+
if (el && element.ignore !== el.ignore) {
|
|
151
|
+
el.ignore = element.ignore;
|
|
152
|
+
// el.attr('ignore',element.ignore )
|
|
153
|
+
}
|
|
148
154
|
});
|
|
149
155
|
};
|
|
150
156
|
/**
|