• echarts区间柱形图


    功能需求:有时候往往需要一个范围区间显示一个值。

    解决思路:一般正常设置,只能一个刻度对应一个值。那么则需要使用两个x轴来解决即可。

    代码实现:

    const xData = ['00:00', '01:00', '02:00', '03:00', '04:00', '05:00', '06:00'];
    const barData = [5, 20, 36, 10, 10, 20];
    
    option = {
        tooltip: {
            show: true,
            trigger: 'axis',
            confine: true,
            formatter(item) {
                const html = `<div>
                                            <div>${xData[item[0].dataIndex]}~${
                            xData[item[0].dataIndex + 1]
                        }</div>
                                                <div><span style="10px;height:10px;display: inline-block;background:${
                                                    item[0].color
                                                }"></span> ${item[0].data}</div>
                                      </div>`;
                return html;
            },
        },
        xAxis: [{
                data: barData,
                show:false
            },
            {
                data: xData,
                axisLabel: {
                    interval: 0,
                    show: true,
                },
                position: 'bottom',
                boundaryGap: false,
                axisPointer: {
                    show: false,
                },
            },
        ],
        yAxis: {
            type: 'value',
            show: false,
        },
        series: [{
            data: barData,
            type: 'bar',
            backgroundStyle: {
                color: 'rgba(220, 220, 220, 0.8)',
            },
        }, ],
    }
    View Code

    效果展示:

     

  • 相关阅读:
    ABAP-smartforms
    字符串截取,长度获取
    ',' 导致excel 分列显示
    SALV使用
    SALV双击事件,相应另一个SALV
    CLEAR REFRESH区别
    SY-INDEX和SY-TABIX区别
    JIT机制对运行速度的优化
    《大道至简》读后感
    N皇后问题
  • 原文地址:https://www.cnblogs.com/zion0707/p/13844620.html
Copyright © 2020-2023  润新知