0

HighCharts の円グラフが IE でのみレンダリングされず、Chrome、FF、Opera、および safari で正しくレンダリングされます。しかし、問題は私のIE9にあります。私はスタックオーバーフローの投稿を読み、運がなかったにもかかわらず、それに応じてコードを修正しました。以下は私のサンプル.jsコードです

$(function () {
    var chart;

    $(document).ready(function () {

        // Build the chart
        $('#Chart').highcharts({
            chart: {
                plotBackgroundColor: null,
                plotBorderWidth: null,
                plotShadow: false
            },
            title: {
                text:'Time-Off Request'
            },
            tooltip: {
                pointFormat: '{series.name}: <b>{point.percentage}%</b>',
                percentageDecimals: 2

            },
            plotOptions: {
                pie: {
                    allowPointSelect: true,
                    cursor: 'pointer',
                    dataLabels: {
                        enabled: false
                    },
                    showInLegend: true

                }
            },
            series: [{
                type: 'pie',
                name: 'Time-Off Request Details',
                data: [
                    ['Vacation', 45.0],
                    ['Time-Off', 26.8],
                    ['Sick Time',12.8],
                    ['Personal', 8.5],
                    ['Bereavement', 6.2],
                    ['Others', 0.7]
                ]
            }]
        });
    });

});

ここに、円グラフをレンダリングしようとしている Html div があります

<div id="Chart">
</div>

誰かが私が間違っているところを指摘できますか

4

1 に答える 1