Echarts时间轴显示如何调整?

新手上路,请多包涵

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'
    }]
};

如何去掉红圈里的内容?

阅读 3.3k
1 个回答
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题