option = {
xAxis : {}, // x轴设置
yAxis : {}, // y轴设置
}
坐标轴分割线(即坐标轴分成小格子的效果):
xAxis: {
splitLine: {
lineStyle: {
type: 'dashed'
}
}
}
坐标轴不是从零开始的
scale : falseyAxis: {
scale: false
}
scale:true & 坐标轴字体颜色yAxis: {
scale: true,
axisLabel: { textStyle: { color: '#ff0000 } } //坐标轴字体颜色
}
datazoom
dataZoom: [
{
type: 'slider',
xAxisIndex: 0,
filterMode: 'empty'
}
],
网友评论