请教关于Highcharts的问题,js的图表插件 15
我使用Highcharts的Highcharts-4.0.1\examples\combo这个图表控件,如下图:需要在右侧添加百分比,让曲线的值是百分比的值,改怎么更改代...
我使用Highcharts的Highcharts-4.0.1\examples\combo这个图表控件,如下图:
需要在右侧添加百分比,让曲线的值是百分比的值,改怎么更改代码。代码多,贴不上,我放在云盘里。
http://yunpan.cn/QiJuQLrNJjjVV 访问密码 d0bd
请各位帮忙看一下。 展开
需要在右侧添加百分比,让曲线的值是百分比的值,改怎么更改代码。代码多,贴不上,我放在云盘里。
http://yunpan.cn/QiJuQLrNJjjVV 访问密码 d0bd
请各位帮忙看一下。 展开
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="../js/jquery-1.7.2.js" type="text/javascript"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
</head>
<body>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
</body>
</html>
<script type="text/javascript">
$(function () {
$('#container').highcharts({
chart: {
zoomType: 'xy'
},
title: {
text: 'Combination chart'
},
xAxis: {
categories: ['Apples', 'Oranges', 'Pears', 'Bananas', 'Plums']
},
yAxis: [{ // Primary yAxis
labels: {
format: '{value}',
style: {
color: Highcharts.getOptions().colors[1]
}
},
title: {
text: '数量',
style: {
color: Highcharts.getOptions().colors[1]
}
}
}, { // Secondary yAxis
title: {
text: '比例',
style: {
color: Highcharts.getOptions().colors[0]
}
},
labels: {
format: '{value} %',
style: {
color: Highcharts.getOptions().colors[0]
}
},
opposite: true
}],
tooltip: {
shared: true
},
labels: {
items: [{
html: 'Total fruit consumption',
style: {
left: '50px',
top: '18px',
color: (Highcharts.theme && Highcharts.theme.textColor) || 'black'
}
}]
},
series: [{
type: 'column',
name: 'Jane',
data: [3, 2, 1, 3, 4],
tooltip: {
valueSuffix: '个'
}
}, {
type: 'column',
name: 'John',
yAxis: 1,
data: [2, 3, 5, 7, 6],
tooltip: {
valueSuffix: '个'
}
}, {
type: 'column',
name: 'Joe',
data: [4, 3, 3, 9, 0],
tooltip: {
valueSuffix: '个'
}
}, {
type: 'spline',
name: 'Average',
data: [3, 2.67, 3, 6.33, 3.33],
marker: {
lineWidth: 2,
lineColor: Highcharts.getOptions().colors[3],
fillColor: 'white'
},
tooltip: {
valueSuffix: '%'
}
}, {
type: 'pie',
name: 'Total consumption',
data: [{
name: 'Jane',
y: 13,
color: Highcharts.getOptions().colors[0] // Jane's color
}, {
name: 'John',
y: 23,
color: Highcharts.getOptions().colors[1] // John's color
}, {
name: 'Joe',
y: 19,
color: Highcharts.getOptions().colors[2] // Joe's color
}],
center: [100, 80],
size: 100,
showInLegend: false,
dataLabels: {
enabled: false
}
}]
});
});
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询