html5 堆叠柱状,Highcharts 堆叠柱形图

Highcharts 堆叠柱形图

以下实例演示了堆叠柱形图。

我们在前面的章节已经了解了 Highcharts 基本配置语法。接下来让我们来看下其他的配置。在 plotOptions 中添加 stacking 属性:

配置

plotOptions:数据点选项

plotOptions用于设置图表中的数据点相关属性。plotOptions根据各种图表类型,其属性设置略微有些差异。

配置图表堆叠设置 plotOptions.area.stacking 为 "percent"。如果禁用堆叠使用 null。

var plotOptions = {

column: {

stacking: 'normal',

dataLabels: {

enabled: true,

color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white',

style: {

textShadow: '0 0 3px black'

}

}

}

};

实例

文件名:highcharts_column_stacked.htm

Highcharts 教程 | 菜鸟教程(runoob.com)

$(document).ready(function() {

var chart = {

type: 'column'

};

var title = {

text: '堆叠柱形图'

};

var xAxis = {

categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']

};

var yAxis ={

min: 0,

title: {

text: '水果总消费量'

},

stackLabels: {

enabled: true,

style: {

fontWeight: 'bold',

color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'

}

}

};

var legend = {

align: 'right',

x: -30,

verticalAlign: 'top',

y: 25,

floating: true,

backgroundColor: (Highcharts.theme && Highcharts.theme.background2) || 'white',

borderColor: '#CCC',

borderWidth: 1,

shadow: false

};

var tooltip = {

formatter: function () {

return '' + this.x + '
' +

this.series.name + ': ' + this.y + '
' +

'Total: ' + this.point.stackTotal;

}

};

var plotOptions = {

column: {

stacking: 'normal',

dataLabels: {

enabled: true,

color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white',

style: {

textShadow: '0 0 3px black'

}

}

}

};

var credits = {

enabled: false

};

var series= [{

name: 'John',

data: [5, 3, 4, 7, 2]

}, {

name: 'Jane',

data: [2, 2, 3, 2, 1]

}, {

name: 'Joe',

data: [3, 4, 4, 2, 5]

}];

var json = {};

json.chart = chart;

json.title = title;

json.xAxis = xAxis;

json.yAxis = yAxis;

json.legend = legend;

json.tooltip = tooltip;

json.plotOptions = plotOptions;

json.credits = credits;

json.series = series;

$('#container').highcharts(json);

});

以上实例输出结果为:

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值