rapid-spreadjs 1.0.104 → 1.0.105
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 +300 -0
- 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 +300 -0
- 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-all.d.ts +149 -0
- package/package.json +1 -1
|
@@ -2839,4 +2839,153 @@ export declare const EChartsUtilsAll: {
|
|
|
2839
2839
|
itemStyle?: undefined;
|
|
2840
2840
|
})[];
|
|
2841
2841
|
};
|
|
2842
|
+
/**
|
|
2843
|
+
* 土工合成材料(有效孔径)
|
|
2844
|
+
* @param config 折线配置
|
|
2845
|
+
* @param xDataArr x轴原始数据(二维数组)
|
|
2846
|
+
* @param yDataArr y轴原始数据(二维数组)
|
|
2847
|
+
* @returns 返回ECharts配置项
|
|
2848
|
+
*/
|
|
2849
|
+
chart470: (config: EChartsUtilsConfigModel, xDataArr: Array<Array<any>>, yDataArr: Array<Array<any>>, sheet: any) => {
|
|
2850
|
+
title: ({
|
|
2851
|
+
show: boolean;
|
|
2852
|
+
text: string;
|
|
2853
|
+
left: string;
|
|
2854
|
+
top: number;
|
|
2855
|
+
textStyle: {
|
|
2856
|
+
fontSize: number;
|
|
2857
|
+
fontWeight: string;
|
|
2858
|
+
};
|
|
2859
|
+
bottom?: undefined;
|
|
2860
|
+
} | {
|
|
2861
|
+
show: boolean;
|
|
2862
|
+
text: string;
|
|
2863
|
+
left: string;
|
|
2864
|
+
bottom: number;
|
|
2865
|
+
textStyle: {
|
|
2866
|
+
fontSize: number;
|
|
2867
|
+
fontWeight: string;
|
|
2868
|
+
};
|
|
2869
|
+
top?: undefined;
|
|
2870
|
+
})[];
|
|
2871
|
+
tooltip: {
|
|
2872
|
+
trigger: string;
|
|
2873
|
+
formatter: (params: any) => string;
|
|
2874
|
+
};
|
|
2875
|
+
grid: {
|
|
2876
|
+
top: number;
|
|
2877
|
+
left: number;
|
|
2878
|
+
right: number;
|
|
2879
|
+
bottom: number;
|
|
2880
|
+
containLabel: boolean;
|
|
2881
|
+
};
|
|
2882
|
+
xAxis: {
|
|
2883
|
+
name: string;
|
|
2884
|
+
nameLocation: string;
|
|
2885
|
+
nameGap: number;
|
|
2886
|
+
nameTextStyle: {
|
|
2887
|
+
fontSize: number;
|
|
2888
|
+
};
|
|
2889
|
+
type: string;
|
|
2890
|
+
axisLine: {
|
|
2891
|
+
lineStyle: {
|
|
2892
|
+
color: string;
|
|
2893
|
+
};
|
|
2894
|
+
};
|
|
2895
|
+
min: number;
|
|
2896
|
+
max: number;
|
|
2897
|
+
axisLabel: {
|
|
2898
|
+
formatter: (value: any) => any;
|
|
2899
|
+
};
|
|
2900
|
+
splitLine: {
|
|
2901
|
+
show: boolean;
|
|
2902
|
+
lineStyle: {
|
|
2903
|
+
color: string;
|
|
2904
|
+
width: number;
|
|
2905
|
+
type: string;
|
|
2906
|
+
};
|
|
2907
|
+
};
|
|
2908
|
+
minorTick: {
|
|
2909
|
+
show: boolean;
|
|
2910
|
+
};
|
|
2911
|
+
minorSplitLine: {
|
|
2912
|
+
show: boolean;
|
|
2913
|
+
lineStyle: {
|
|
2914
|
+
color: string;
|
|
2915
|
+
width: number;
|
|
2916
|
+
type: string;
|
|
2917
|
+
};
|
|
2918
|
+
};
|
|
2919
|
+
};
|
|
2920
|
+
yAxis: {
|
|
2921
|
+
type: string;
|
|
2922
|
+
name: string;
|
|
2923
|
+
nameLocation: string;
|
|
2924
|
+
nameGap: number;
|
|
2925
|
+
nameTextStyle: {
|
|
2926
|
+
fontSize: number;
|
|
2927
|
+
};
|
|
2928
|
+
axisLine: {
|
|
2929
|
+
lineStyle: {
|
|
2930
|
+
color: string;
|
|
2931
|
+
};
|
|
2932
|
+
};
|
|
2933
|
+
min: number;
|
|
2934
|
+
max: number;
|
|
2935
|
+
splitLine: {
|
|
2936
|
+
show: boolean;
|
|
2937
|
+
lineStyle: {
|
|
2938
|
+
color: string;
|
|
2939
|
+
width: number;
|
|
2940
|
+
};
|
|
2941
|
+
};
|
|
2942
|
+
};
|
|
2943
|
+
series: {
|
|
2944
|
+
name: string;
|
|
2945
|
+
type: string;
|
|
2946
|
+
data: any[][];
|
|
2947
|
+
smooth: boolean;
|
|
2948
|
+
lineStyle: {
|
|
2949
|
+
width: number;
|
|
2950
|
+
type: string;
|
|
2951
|
+
};
|
|
2952
|
+
showSymbol: boolean;
|
|
2953
|
+
symbol: string;
|
|
2954
|
+
symbolSize: number;
|
|
2955
|
+
itemStyle: {
|
|
2956
|
+
color: any;
|
|
2957
|
+
borderColor: string;
|
|
2958
|
+
borderWidth: number;
|
|
2959
|
+
};
|
|
2960
|
+
markPoint: {
|
|
2961
|
+
symbol: string;
|
|
2962
|
+
symbolSize: number;
|
|
2963
|
+
data: {
|
|
2964
|
+
name: string;
|
|
2965
|
+
coord: any[];
|
|
2966
|
+
value: number;
|
|
2967
|
+
itemStyle: {
|
|
2968
|
+
color: string;
|
|
2969
|
+
};
|
|
2970
|
+
label: {
|
|
2971
|
+
show: boolean;
|
|
2972
|
+
formatter: string;
|
|
2973
|
+
position: string;
|
|
2974
|
+
fontSize: number;
|
|
2975
|
+
};
|
|
2976
|
+
}[];
|
|
2977
|
+
};
|
|
2978
|
+
markLine: {
|
|
2979
|
+
symbol: string;
|
|
2980
|
+
data: {
|
|
2981
|
+
coord: any[];
|
|
2982
|
+
lineStyle: {
|
|
2983
|
+
type: string;
|
|
2984
|
+
color: string;
|
|
2985
|
+
width: number;
|
|
2986
|
+
};
|
|
2987
|
+
}[][];
|
|
2988
|
+
};
|
|
2989
|
+
}[];
|
|
2990
|
+
};
|
|
2842
2991
|
};
|