rapid-spreadjs 1.0.76 → 1.0.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/index.cjs.js +4 -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 +4 -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
|
@@ -8338,7 +8338,7 @@ const EChartsUtilsAll = {
|
|
|
8338
8338
|
lineStyle: {
|
|
8339
8339
|
color: lineData[0].lineColor,
|
|
8340
8340
|
//线条类型(solid:实线、dashed:粗虚线、dotted:细虚线)
|
|
8341
|
-
type: '
|
|
8341
|
+
type: 'solid',
|
|
8342
8342
|
},
|
|
8343
8343
|
//线条上数据点的颜色
|
|
8344
8344
|
itemStyle: {
|
|
@@ -8619,6 +8619,9 @@ const EChartsUtils = {
|
|
|
8619
8619
|
else if (config.chartType == 390) {
|
|
8620
8620
|
option = EChartsUtilsAll.chart390(config, xDataArr, yDataArr);
|
|
8621
8621
|
}
|
|
8622
|
+
else if (config.chartType == 410) {
|
|
8623
|
+
option = EChartsUtilsAll.chart410(config, xDataArr, yDataArr, sheet);
|
|
8624
|
+
}
|
|
8622
8625
|
if (option && typeof option === 'object') {
|
|
8623
8626
|
//如果是隐藏的图表,则需要禁用ECharts的动画效果
|
|
8624
8627
|
//原因是:如果ECharts使用了动画效果,图表渲染完成可能需要0.5秒,但是在导出ECharts统计图为图片的场景下时,可能在图表还没有渲染完成(动画效果还没结束)前就要获取图像了,此时可能就会造成获取到的图像内容丢失的情况
|