Files
pqs/pqs-common/common-echarts/src/main/java/com/njcn/echarts/webEchart.js
2022-08-18 15:06:18 +08:00

42 lines
980 B
JavaScript

var option1 = {
backgroundColor : '#f9f9f9',//背景色,
title : {
text : '暂降幅值的概率分布函数',
x : 'center'
},
animation : false,
legend : {
show : false,
data : [ '暂降幅值' ]
},
calculable : true,
xAxis : [ {
type : 'category',
boundaryGap : false,
name : '暂降幅值',
nameLocation : 'center',
nameGap : 20,
nameTextStyle : {
fontSize : 15
},
data : [ '0', '10%', '20%', '30%', '40%', '50%', '60%',
'70%', '80%', '90%' ]
} ],
yAxis : [ {
type : 'value',
name : '概率分布',
nameLocation : 'center',
nameGap : 40,
nameTextStyle : {
fontSize : 15
},
axisLabel : {
formatter : '{value} %'
}
} ],
series : [ {
name : '暂降幅值',
type : 'line',
data : eventValue
} ]
};