Malaiyandi Murugan
Malaiyandi Murugan

Reputation: 393

Highcharts to get Combined Bar and line charts

i would like to ask is that possible using Highcharts to get Combined Bar and line charts?

Thanks for any advice.

Upvotes: 0

Views: 59

Answers (1)

Martin Schneider
Martin Schneider

Reputation: 3268

Yes it is possible. You just have to provide different series with corresponding types like in

series: [{
        type: 'column',
        name: 'Jane',
        data: [3, 2, 1, 3, 4]
    },  {
        type: 'line',
        name: 'Average',
        data: [3, 2.67, 3, 6.33, 3.33],
    }]

See http://www.highcharts.com/demo/combo

Upvotes: 2

Related Questions