YouTip LogoYouTip

Highcharts Column Stacked

[![Image 1: Highcharts Column Chart](#)Highcharts Column Chart](#) The following example demonstrates a stacked column chart. We have already learned the basic configuration syntax of Highcharts in previous chapters. Next, let's look at other configurations. Add the `stacking` property in `plotOptions`: * * * ## Configuration ### plotOptions: Data Point Options `plotOptions` is used to set properties related to data points in the chart. The property settings of `plotOptions` vary slightly depending on the chart type. Configure the chart stacking by setting `plotOptions.area.stacking` to `"percent"`. To disable stacking, use `null`. var plotOptions = { column: { stacking: 'normal', dataLabels: { enabled: true, color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white', style: { textShadow: '0 0 3px black' } } }}; ### Example Filename: highcharts_column_stacked.htm
$(document).ready(function() { var chart = { type: 'column' }; var title = { text: 'Stacked Column Chart' }; var xAxis = { categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas'] }; var yAxis ={ min: 0, title: { text: 'Total Fruit Consumption' }, 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); }); The output of the above example is: [![Image 2: Highcharts Column Chart](#)Highcharts Column Chart](#)
← Highcharts Area InvertedHighcharts Column Basic β†’