tvcharts 0.6.24 → 0.6.25
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/dist/echarts.js +6 -2
- package/dist/echarts.js.map +2 -2
- package/lib/chart/linesPlot/HistogramPlotPath.js +1 -1
- package/lib/chart/linesPlot/LinesPlotView.js +16 -16
- package/lib/chart/linesPlot/linesPlotLayout.js +20 -20
- package/lib/component/axisPointer/axisTrigger.js +9 -0
- package/lib/component/marker/MarkLabelView.js +1 -1
- package/lib/core/echarts.js +5 -4
- package/package.json +1 -1
- package/types/dist/echarts.d.ts +1 -1
- package/types/dist/shared.d.ts +1 -1
- package/types/src/chart/linesPlot/linesPlotLayout.d.ts +1 -1
- package/types/src/core/echarts.d.ts +1 -1
package/dist/echarts.js
CHANGED
|
@@ -25172,6 +25172,7 @@ ECharts.internalField = function() {
|
|
|
25172
25172
|
updateConnectedChartsStatus(otherCharts, CONNECT_STATUS_PENDING);
|
|
25173
25173
|
each(otherCharts, function(otherChart) {
|
|
25174
25174
|
if (otherChart[CONNECT_STATUS_KEY] !== CONNECT_STATUS_UPDATING) {
|
|
25175
|
+
action.isConnect = true;
|
|
25175
25176
|
otherChart.dispatchAction(action);
|
|
25176
25177
|
}
|
|
25177
25178
|
});
|
|
@@ -60735,6 +60736,9 @@ function axisTrigger(payload, ecModel, api2) {
|
|
|
60735
60736
|
const coordSysContainsPoint = isIllegalPoint || coordSys.containPoint(point);
|
|
60736
60737
|
each(coordSysAxesInfo.coordSysAxesInfo[coordSysKey], function(axisInfo, key) {
|
|
60737
60738
|
const axis = axisInfo.axis;
|
|
60739
|
+
if (payload.isConnect && axis.dim === "y") {
|
|
60740
|
+
return;
|
|
60741
|
+
}
|
|
60738
60742
|
const inputAxisInfo = findInputAxisInfo(inputAxesInfo, axisInfo);
|
|
60739
60743
|
if (!shouldHide && coordSysContainsPoint && (!inputAxesInfo || inputAxisInfo)) {
|
|
60740
60744
|
let val = inputAxisInfo && inputAxisInfo.value;
|
|
@@ -70138,7 +70142,7 @@ var markerTypeCalculator2 = {
|
|
|
70138
70142
|
fill = dataItem.get(sign > 0 ? positiveBorderColorQuery : negativeBorderColorQuery);
|
|
70139
70143
|
} else if (["linesPlot", "labels"].includes(seriesModel.subType)) {
|
|
70140
70144
|
const isLinesPlot = seriesModel.subType === "linesPlot";
|
|
70141
|
-
const dataItem = seriesData.getItemModel(lastIndex);
|
|
70145
|
+
const dataItem = seriesData.getItemModel(lastIndex, true);
|
|
70142
70146
|
fill = dataItem.get([isLinesPlot ? "lineStyle" : "itemStyle", "color"]);
|
|
70143
70147
|
}
|
|
70144
70148
|
return {
|
|
@@ -70297,7 +70301,7 @@ var MarkLabelView2 = class extends Component_default2 {
|
|
|
70297
70301
|
}
|
|
70298
70302
|
const markLabelData = labelMap.get(seriesName);
|
|
70299
70303
|
each(markLabelData, (item) => {
|
|
70300
|
-
|
|
70304
|
+
const el = markerGroupMap.get(item.name);
|
|
70301
70305
|
delete markLabelData[item.name];
|
|
70302
70306
|
if (!el) {
|
|
70303
70307
|
return;
|