我遇到了重新定位 yAxis.plotLines.label 位置的问题。
angular - Highchart yAxis plotLines 标签位置-LMLPHP

我想将标签从原始位置移动到 plotLine 下。
请检查这个 link

Highcharts.chart('container', {
    xAxis: {
        tickInterval: 24 * 3600 * 1000, // one day
        type: 'datetime'
    },

    yAxis: {
        plotLines: [{
            color: 'red',
            width: 2,
            value: 100,
            label: {
                text: 'Plot line',
                align: 'right'
            }
        }]
    },

    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4],
        pointStart: Date.UTC(2010, 0, 1),
        pointInterval: 24 * 3600 * 1000
    }]
});

最佳答案

检查 ojita 调整标签位置 ojita 演示

 yAxis: {
    plotLines: [{
        color: 'red',
        width: 2,
        value: 100,
        label: {
            text: 'Plot line',
            align: 'right',
            y: 20, /*moves label down*/
        }
    }]
},

关于angular - Highchart yAxis plotLines 标签位置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46418011/

10-11 23:54