Reputation: 1275
Is is possible to draw a branched chart like in the picture below using Highcharts?
Upvotes: 0
Views: 102
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]
]
}]
Upvotes: 4