X軸如下;Y軸同理
xAxis: [
{
min: 0,
splitNumber: 8,
// //網(wǎng)格線
splitLine: {
show: true,
lineStyle: {
type: 'dashed', //y軸分割線類型
color: 'rgba(102,102,102,0.9)',
width: 2.5,
},
},
// 坐標(biāo)刻度線
axisTick: {
show: false,
lineStyle: {
type: 'solid', //y軸分割線類型
color: 'rgba(102,102,102,0.9)',
width: 2.5,
},
},
// 坐標(biāo) 軸線
axisLine: {
show: true,
lineStyle: {
type: 'solid',
// color: 'rgba(66, 192, 255, .3)',
color: 'rgba(102,102,102,0.9)',
width: 2.5
// color: 'red'
},
},
// //坐標(biāo)軸樣式
axisLabel: {
show: true,
textStyle: {
color: '#FFFFFF',
fontSize: 30,
padding: 10,
},
},
},
],