柱子
series: [{ type: 'bar',
? ? ? ? ? ? barWidth : 20,//柱圖寬度
? ? ? ? ? ? color:'red'//柱子顏色}]
坐標(biāo)軸
"axisTick":{//y軸刻度線(xiàn)"show":false? ? ? ? },
"axisLine":{//y軸"show":false },
axisLabel:{color:'blue'}, // x/y軸字體顏色
?axisLine:{lineStyle:{color:'blue'}? ? // x/y軸坐標(biāo)軸顏色},
?axisTick:{lineStyle:{color:'rgb(150,150,150)'}? ? // x/y軸刻度的顏色 },
網(wǎng)格線(xiàn)
splitLine: {
? ? ? ? ? ? ? ? show: true,
? ? ? ? ? ? ? ? lineStyle:{
? ? ? ? ? ? ? ? ? ???? color: ['blue'],//網(wǎng)格線(xiàn)顏色
? ? ? ? ? ? ? ? ? ???? width: 1,//網(wǎng)格線(xiàn)寬度
? ? ? ? ? ? ? ? ? ? ? ?type: 'solid'//網(wǎng)格線(xiàn)類(lèi)型
? ? ? ? ? ? ? ? }
},//網(wǎng)格線(xiàn)
拐點(diǎn)
series: [ {
? ? ? ? ? ? type: 'line',
? ? ? ? ? ? smooth:true,//虛線(xiàn)光滑
? ? ? ? ? ? lineStyle: {normal: {color: 'red',//折線(xiàn)顏色width: 5//折線(xiàn)寬度}},
? ? ? ? ? ? symbol:'circle',//拐點(diǎn)形狀
? ? ? ? ? ? symbolSize:8,//拐點(diǎn)大小
? ? ? ? ? ? itemStyle:{ normal:{color:'white',//拐點(diǎn)填充顏色borderColor:'black',? //拐點(diǎn)邊框顏色 },
? ? ? ? } ]