jquery – 内部和外部的Highcharts pie dataLabels

前端之家收集整理的这篇文章主要介绍了jquery – 内部和外部的Highcharts pie dataLabels前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要一个饼图内部和外部的数据标签饼图.
我知道,负距离会显示馅饼内的标签.但我想在里面和外面.
在外面,我希望显示百分比和点内总和.

解决方法

您无法设置双数据标签,但您可以使用解决方法,这不是完美的,但可能会有所帮助.所以你可以设置use HTML,然后在formater中返回两个div,首先是适当的datalabel(外部),第二个是内部.然后使用计数器设置id,将每个div的id定义为唯一,然后只需要设置适当的CSS.第一个数据标签的示例可在此处获得: http://jsfiddle.net/4RKF4/
$(function () {
var chart,counter = 0;
$(document).ready(function() {
    chart = new Highcharts.Chart({
        chart: {
            renderTo: 'container',plotBackgroundColor: null,plotBorderWidth: null,plotShadow: false
        },title: {
            text: 'Browser market shares at a specific website,2010'
        },tooltip: {
            pointFormat: '{series.name}: <b>{point.percentage}%</b>',percentageDecimals: 1
        },plotOptions: {
            pie: {
                allowPointSelect: true,cursor: 'pointer',dataLabels: {
                    enabled: true,color: '#000000',connectorColor: '#000000',useHTML:true,formatter: function() {
                        counter++;
                        return '<div class="datalabel"><b>'+ this.point.name +'</b>: '+ this.percentage +' %</div><div class="datalabelInside" id="datalabelInside'+counter+'"><b>'+ this.point.name +'</b>: '+ this.percentage +' %</div>';
                    }
                }
            }
        },series: [{
            type: 'pie',name: 'Browser share',data: [
                ['Firefox',45.0],['IE',26.8],{
                    name: 'Chrome',y: 12.8,sliced: true,selected: true
                },['Safari',8.5],['Opera',6.2],['Others',0.7]
            ]
        }]
    });
});

});

CSS样式:

.datalabelInside {
position:absolute;
}

 #datalabelInside1 {
color:#fff;
left:-150px;
}
原文链接:https://www.f2er.com/jquery/241551.html

猜你在找的jQuery相关文章