HighCharts pie chart labels not displayed properly

折月煮酒 提交于 2020-01-07 05:26:07

问题


I have taken an example Highcharts plnkr and edited it to match my requirements. Below is the plnkr that I have developed. https://plnkr.co/edit/yzXLz7AIDoWa1Pzxxl4k?p=preview Here all the labels and icons for the labels are displayed properly. But when I include it in my application, the icons for the labels are not displayed properly. It is displayed as below

My label code is as below

 labelFormatter: function () {
                    return '<div class="legend-label-md row" style=" border-bottom:1px solid black; margin-bottom: 5px"><span class="col-md-10">' + this.name +
                    '</span><span class="col-md-2" >' + this.value +
                    '%</span></div> ';
            }

来源:https://stackoverflow.com/questions/43452938/highcharts-pie-chart-labels-not-displayed-properly

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!