ivkremer
ivkremer

Reputation: 1275

How to draw branched chart in Highcharts?

Is is possible to draw a branched chart like in the picture below using Highcharts?

branched chart

Upvotes: 0

Views: 102

Answers (1)

Ryan Erb
Ryan Erb

Reputation: 838

Here is a quick example of matching up the end points.

 series: [{
            data: [
                [0, 29.9], 
                [1, 71.5], 
                [2, 100]
            ]
        },{
            data: [
                [2, 100], 
                [3, 150]
            ]
        },{
            data: [
                [2, 100], 
                [3, 50]
            ]
        }]

http://jsfiddle.net/YmucT/

Upvotes: 4

Related Questions