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.cjs.js
CHANGED
|
@@ -8086,7 +8086,7 @@ const EChartsUtilsAll = {
|
|
|
8086
8086
|
seriesData.push({
|
|
8087
8087
|
name: item.legend,
|
|
8088
8088
|
type: 'line',
|
|
8089
|
-
data: xDataArr[0].map((x, idx) => [x, yDataArr[index][idx]]),
|
|
8089
|
+
data: xDataArr[0].filter((x) => x != 0 && x != null && x != undefined && x != '/').map((x, idx) => [x, yDataArr[index][idx]]),
|
|
8090
8090
|
symbol: index == 0 ? 'triangle' : index == 1 ? 'circle' : 'rect',
|
|
8091
8091
|
lineStyle: {
|
|
8092
8092
|
color: item.lineColor,
|