rapid-spreadjs 1.0.83 → 1.0.84
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/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.cjs.min.js +1 -1
- package/dist/index.cjs.min.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.esm.min.js +1 -1
- package/dist/index.esm.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -8064,7 +8064,7 @@ const EChartsUtilsAll = {
|
|
|
8064
8064
|
seriesData.push({
|
|
8065
8065
|
name: item.legend,
|
|
8066
8066
|
type: 'line',
|
|
8067
|
-
data: xDataArr[0].map((x, idx) => [x, yDataArr[index][idx]]),
|
|
8067
|
+
data: xDataArr[0].filter((x) => x != 0 && x != null && x != undefined && x != '/').map((x, idx) => [x, yDataArr[index][idx]]),
|
|
8068
8068
|
symbol: index == 0 ? 'triangle' : index == 1 ? 'circle' : 'rect',
|
|
8069
8069
|
lineStyle: {
|
|
8070
8070
|
color: item.lineColor,
|