endLabel的offset不起作用
https://echarts.apache.org/next/examples/zh/editor.html?c=line-simple
option = {
    xAxis: {
        type: 'category',
        data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
    },
    yAxis: {
        type: 'value'
    },
    series: [{
        data: [150, 230, 224, 218, 135, 147, 260],
        type: 'line',
         endLabel: {
                show: true,
                color: 'gray',
                distance: -1,
                offset:[100,200]

            }
    }]
};
2、

Reply via email to