300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > html使用highcharts绘制饼图 饼图.html · 赵文博/Highcharts - Gitee.com

html使用highcharts绘制饼图 饼图.html · 赵文博/Highcharts - Gitee.com

时间:2019-01-29 00:28:50

相关推荐

html使用highcharts绘制饼图 饼图.html · 赵文博/Highcharts - Gitee.com

Title

* {

margin: 0;

padding: 0;

border: 0;

}

#container {

width: 100%;

}

$(function(){

$('#container').highcharts({

chart:{

poltBackgroundColor:null,

plotBorderWidth:null,

plotshadow:false

},

title: {

text: '我的第一个图表'

},

subtitle: {

text: '赵文博'

},

plotOptions:{

pie:{

allowPointSelect:true,

cursor:'pointer',

dataLabels:{

enabled:true,

color:'#000000',

connectorColor:'#000000',

format:'{point.name}:{point.percentage:.lf}%'

}

}

},

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

}]

})

})

一键复制

编辑

Web IDE

原始数据

按行查看

历史

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。