rapid-spreadjs 1.0.85 → 1.0.87
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 +10 -3
- 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 +10 -3
- 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/dist/utils/echarts.d.ts +4 -2
- package/package.json +1 -1
package/dist/utils/echarts.d.ts
CHANGED
|
@@ -11,8 +11,9 @@ export declare const EChartsUtils: {
|
|
|
11
11
|
* @param sheet 工作表对象
|
|
12
12
|
* @param config 折线配置
|
|
13
13
|
* @param isHideChart 是否隐藏图表
|
|
14
|
+
* @param isConsoleData 是否输出各个数据
|
|
14
15
|
*/
|
|
15
|
-
create: (GC: any, spread: any, sheet: any, config: EChartsUtilsConfigModel, isHideChart?: boolean) => Promise<{
|
|
16
|
+
create: (GC: any, spread: any, sheet: any, config: EChartsUtilsConfigModel, isHideChart?: boolean, isConsoleData?: boolean) => Promise<{
|
|
16
17
|
fObj: any;
|
|
17
18
|
fObjPosition: {
|
|
18
19
|
x: number;
|
|
@@ -28,8 +29,9 @@ export declare const EChartsUtils: {
|
|
|
28
29
|
* @param sheet 工作表对象
|
|
29
30
|
* @param config 图表配置
|
|
30
31
|
* @param isHideChart 是否隐藏图表
|
|
32
|
+
* @param isConsoleData 是否输出各个数据
|
|
31
33
|
*/
|
|
32
|
-
initChart: (spread: any, sheet: any, config: EChartsUtilsConfigModel, isHideChart?: boolean) => echarts.ECharts;
|
|
34
|
+
initChart: (spread: any, sheet: any, config: EChartsUtilsConfigModel, isHideChart?: boolean, isConsoleData?: boolean) => echarts.ECharts;
|
|
33
35
|
/**
|
|
34
36
|
* 获取ECharts对象
|
|
35
37
|
* @param chartId 图表ID
|