|
@@ -224,6 +224,7 @@ const getOrderEacths = function (handleFn,id,data) {
|
|
|
top:'20%',
|
|
|
textStyle: {
|
|
|
fontSize: 14,
|
|
|
+ color:'#FFFFFF'
|
|
|
},
|
|
|
},
|
|
|
color:data.color,
|
|
@@ -330,10 +331,49 @@ const getOtherEacths = function (handleFn,id,data) {
|
|
|
},
|
|
|
xAxis: {
|
|
|
type: 'value',
|
|
|
- boundaryGap: [0, 0.01]
|
|
|
+ splitLine:{
|
|
|
+ show: true,
|
|
|
+ lineStyle:{
|
|
|
+ opacity:0.2,
|
|
|
+ color:'#DCDCDC',
|
|
|
+ }
|
|
|
+ },
|
|
|
+ boundaryGap: [0, 0.01],
|
|
|
+ axisLabel:{
|
|
|
+ show: true,
|
|
|
+ textStyle:{
|
|
|
+ color: '#C0C0C0', //更改坐标轴文字颜色
|
|
|
+ fontSize : 12, //更改坐标轴文字大小
|
|
|
+ }
|
|
|
+ },
|
|
|
+ axisTick: {//轴网格,在xAxis或yAxis根下
|
|
|
+ lineStyle:{
|
|
|
+ width:1,
|
|
|
+ color:'#DCDCDC',
|
|
|
+ type:'solid'
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
yAxis: {
|
|
|
type: 'category',
|
|
|
+ splitLine:{
|
|
|
+ show: false,
|
|
|
+ },
|
|
|
+ axisLabel:{
|
|
|
+ show: true,
|
|
|
+ textStyle:{
|
|
|
+ color: '#C0C0C0', //更改坐标轴文字颜色
|
|
|
+ fontSize : 12 //更改坐标轴文字大小
|
|
|
+ }
|
|
|
+ },
|
|
|
+ axisTick: {//轴网格,在xAxis或yAxis根下
|
|
|
+ show:false,
|
|
|
+ lineStyle:{
|
|
|
+ width:1,
|
|
|
+ color:'#DCDCDC',
|
|
|
+ type:'solid'
|
|
|
+ }
|
|
|
+ },
|
|
|
data: data.yAxisData
|
|
|
},
|
|
|
series: [
|