tvcharts 0.5.77 → 0.5.78
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 +3 -2
- package/dist/echarts.js.map +2 -2
- package/lib/util/states.js +3 -2
- package/package.json +1 -1
package/dist/echarts.js
CHANGED
|
@@ -11770,8 +11770,9 @@ function getSeriesPointData(ecModel, payload = {}) {
|
|
|
11770
11770
|
const prevValue = data.get(dim, index - 1);
|
|
11771
11771
|
const changePercent = ((currentValue - prevValue) / prevValue * 100).toFixed(2) + "%";
|
|
11772
11772
|
const seriesId = seriesModel.id;
|
|
11773
|
-
|
|
11774
|
-
|
|
11773
|
+
const seriesName = seriesModel.name;
|
|
11774
|
+
seriesPointData[seriesName] = {
|
|
11775
|
+
name: seriesName,
|
|
11775
11776
|
data: values,
|
|
11776
11777
|
color: style.fill,
|
|
11777
11778
|
seriesId,
|