echarts 坐标轴
2017-11-23 本文已影响0人
婷诗漾
option = {
xAxis : {}, // x轴设置
yAxis : {}, // y轴设置
}
坐标轴分割线(即坐标轴分成小格子的效果):
xAxis: {
splitLine: {
lineStyle: {
type: 'dashed'
}
}
}
坐标轴不是从零开始的
yAxis: {
scale: false
}
![](https://img.haomeiwen.com/i6995387/342724a81ac39d4e.png)
yAxis: {
scale: true,
axisLabel: { textStyle: { color: '#ff0000 } } //坐标轴字体颜色
}
![](https://img.haomeiwen.com/i6995387/6251e6381b2b2897.png)
datazoom
dataZoom: [
{
type: 'slider',
xAxisIndex: 0,
filterMode: 'empty'
}
],
![](https://img.haomeiwen.com/i6995387/9852b34596e249cc.png)