web-dev-qa-db-ja.com

jquery Highchartsを使用して円グラフで割合ではなく値を表示する方法

jQuery Highchartsで作成されたパイ文字を使用する私のimのプロジェクト。したいことは、親子関係の代わりに挿入された値iを表示することです。例:グラフにfirefox-43.269 ...%と表示されます誰でもこれで私を助けることができます。前もって感謝します。

チャートコード

<!-- 1. Add these JavaScript inclusions in the head of your page -->
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
    <script type="text/javascript" src="../js/highcharts.js"></script>

    <!-- 1a) Optional: add a theme file -->
    <!--
        <script type="text/javascript" src="../js/themes/gray.js"></script>
    -->

    <!-- 1b) Optional: the exporting module -->
    <script type="text/javascript" src="../js/modules/exporting.js"></script>


    <!-- 2. Add the JavaScript to initialize the chart on document ready -->
    <script type="text/javascript">

        var chart;
        $(document).ready(function() {
            chart = new Highcharts.Chart({
                chart: {
                    renderTo: 'browser_cart',
                    plotBackgroundColor: null,
                    plotBorderWidth: null,
                    plotShadow: false
                },
                title: {
                    text: 'Browser market shares at a specific website, 2010'
                },
                tooltip: {
                    formatter: function() {
                        return '<b>'+ this.point.name +'</b>: '+ this.percentage +' %';
                    }
                },
                plotOptions: {
                    pie: {
                        allowPointSelect: true,
                        cursor: 'pointer',
                        dataLabels: {
                            enabled: true,
                            color: '#000000',
                            connectorColor: '#000000',
                            formatter: function() {
                                return '<b>'+ this.point.name +'</b>: '+ this.percentage +' clicks';
                            }
                        }
                    }
                },
                series: [{
                    type: 'pie',
                    name: 'Browser share',
                    data: [
                        ['Firefox',   45],
                        ['IE',       26],
                        ['Chrome',   12], 
                        ['Safari',    8],
                        ['Opera',     6],
                        ['Others',   7]
                    ]
                }]
            });
        });

    </script>

</head>
<body>

    <!-- 3. Add the container -->
    <div id="browser_cart" style="width: 800px; height: 400px; margin: 0 auto"></div>


</body>
39
maxlk

修正済み、行の下で変更されたばかり

  format: '<b>{point.name}</b>: {point.percentage:.1f} %',

  format: '<b>{point.name}</b>: {point.y:.1f} Rs.',
46
Shaikh Mubeen
return '<b>'+ this.point.name +'</b>: '+ this.y +' clicks';
24
sjith

この場合、「this.percentage」を「this.point.y」に置き換えることができます

フォーマッターを見る:(古いリンクが削除された)、新しいリンク- https://api.highcharts.com/highcharts/tooltip.formatter

14
tulsluper