echarts 样式更改文档整理

//更改虚线
splitLine:{
lineStyle:{
width:1,
color:"#ccc",
type:"dotted",
},
},

                    axisLine:{
                        lineStyle:{
                            width:1,
                            color:"rgba(0,0,0,0)",
                        },
                    },
                    
                    //更改字体
                    axisLabel:{
                        textStyle:{
                            fontSize:10,
                        },
                    },
                    splitArea: {
                        show: true
                    }
                }],
                series: [{
                    name: '',
                    type: chartType,
                    //更改柱状颜色
                    itemStyle:{
                        normal:{
                            color:"#ff5b16",
                            width:1,
                        },
                    },
                    //宽度
                    barWidth:5,

你可能感兴趣的:(echarts 样式更改文档整理)