DevExtreme Chart Label overlapped

I'm using the DevExtreme charts. There's an option resolveLabelOverlapping, when set to shift for piechart will solve my problem, but no shift for bubble chart.

Is there any solution to let the contents on the labels visible?

Label overlapped bubble chart


You can try the "customizeLabel" callback function for solving your problem. If you set required "verticalOffset" option for overlapped label you can get the good view for your chart:

customizeLabel: function (arg){
        if (arg.valueText === "Instagram") {
            return {
                verticalOffset: -60
            }
        }
    }
链接地址: http://www.djcxy.com/p/31012.html

上一篇: 使用DevExpress / DevExtreme的图表

下一篇: DevExtreme图表标签重叠