标签:
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
	</head>
	<body>
		<div id="container" style="min-width:800px;height:400px;"></div>
		<!--<script type="text/javascript" src="./js/jquery.js"></script>
        <script type="text/javascript" src="./node_modules/highcharts/highcharts.js"></script>-->
        <script src=‘http://cdn.hcharts.cn/jquery/jquery-1.8.3.min.js‘></script>
   		<script src=‘http://cdn.hcharts.cn/highcharts/highcharts.js‘></script>
		<script>
			$(function () {
    $(‘#container‘).highcharts({
        chart: {
            plotBackgroundColor: null,
            plotBorderWidth: null,
            plotShadow: false
        },
        title: {
            text: ‘你好‘
        },
        tooltip: {
            pointFormat: ‘{series.name}: <b>{point.percentage:.1f}%</b>‘
        },
        plotOptions: {
            pie: {
                allowPointSelect: true,
                cursor: ‘pointer‘,
                dataLabels: {
                    enabled: true,
                    format: ‘<b>{point.name}</b>: {point.percentage:.1f} %‘,
                    style: {
                        color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || ‘black‘
                    }
                }
            }
        },
        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]
            ]
        }]
    });
});
		</script>
	</body>
</html>
标签:
原文地址:http://www.cnblogs.com/xj198197/p/5969046.html