highcharts实现饼状图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了highcharts实现饼状图相关的知识,希望对你有一定的参考价值。

<!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>

以上是关于highcharts实现饼状图的主要内容,如果未能解决你的问题,请参考以下文章

请教highcharts饼状图在IE下,数据为零时,显示的图形不齐全

highcharts为饼状图添加点击事件能获得啥值

highcharts饼状图使用案例

js饼状图(带百分比)功能实现,新人必懂

柱形图,饼状图JavaScript

hightchart的3d饼状图图例显示问题记录