Highcharts Combinations Column
# Highcharts Column, Line, and Pie Chart Combination
[Highcharts Combination Chart](#)
The following example demonstrates a combination of column, line, and pie charts.
We have already learned the basic configuration syntax of Highcharts in previous chapters. Next, let's look at other configurations.
* * *
## Configuration
### series Configuration
Set the `type` attribute of `series` to `column`/`line`/`pie`. `series.type` describes the data series type. The default value is "line".
var series = { type: 'column'};
### Example
File Name: highcharts_combinations_column.htm
$(document).ready(function() { var title = { text: 'Combination chart' }; var xAxis = { categories: ['Apples', 'Oranges', 'Pears', 'Bananas', 'Plums'] }; var labels = { items: [{ html: 'Fruit Consumption', style: { left: '50px', top: '18px', color: (Highcharts.theme && Highcharts.theme.textColor) || 'black' } }] }; var series= [{ type: 'column', name: 'Jane', data: [3, 2, 1, 3, 4] }, { type: 'column', name: 'John', data: [2, 3, 5, 7, 6] }, { type: 'column', name: 'Joe', data: [4, 3, 3, 9, 0] }, { type: 'spline', name: 'Average', data: [3, 2.67, 3, 6.33, 3.33], marker: { lineWidth: 2, lineColor: Highcharts.getOptions().colors, fillColor: 'white' } }, { type: 'pie', name: 'Total Consumption', data: [{ name: 'Jane', y: 13, color: Highcharts.getOptions().colors // Jane of the colors }, { name: 'John', y: 23, color: Highcharts.getOptions().colors // John of the colors }, { name: 'Joe', y: 19, color: Highcharts.getOptions().colors // Joe of the colors }], center: [100, 80], size: 100, showInLegend: false, dataLabels: { enabled: false } } ]; var json = {}; json.title = title; json.xAxis = xAxis; json.labels = labels; json.series = series; $('#container').highcharts(json); });
[Try it Β»](#)
The output of the above example is:
[Highcharts Combination Chart](#)
YouTip