https://echarts.apache.org/ex...
base = + new Date()
option = {
xAxis: {
type: 'time',
boundaryGap: false
},
yAxis: {
type: 'value'
},
series: [{
data: [
[base, Math.random() * 300],
[base + 1000, Math.random() * 300],
[base + 2000, Math.random() * 300],
[base + 3000, Math.random() * 300],
[base + 4000, Math.random() * 300],
[base + 5000, Math.random() * 300],
[base + 6000, Math.random() * 300],
],
type: 'line'
}]
};
如何去掉红圈里的内容?
https://echarts.apache.org/zh...
自定义刻度标签