javascript - Can this bar chart style from Excel be recreated with Highcharts? -


i'd have lines linking each data block, attached screenshot excel. better if line change color based on it's angle. can't seem find in documentation create style chart. ideas?

excel line linked data

jsfiddle - same bar chart (without connectors)

$(function () { $('#container').highcharts({     chart: {         type: 'bar'     },     title: {         text: 'stacked bar chart'     },     xaxis: {         categories: ['row1', 'row2']        },     yaxis: {         min: 0,         title: {             text: 'total fruit consumption'         }     },     legend: {         reversed: false     },     plotoptions: {         series: {             stacking: 'normal'         }     },     series: [{         name: 'data1',         data: [9, 4]     }, {         name: 'data2',         data: [12, 6]     }, {         name: 'data3',         data: [15, 7]     }, {         name: 'data4',         data: [16, 8]     }, {         name: 'data5',         data: [19, 7]     }] }); 

});


Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

firemonkey - How do I make a beep sound in Android using Delphi and the API? -

jdbc - Not able to establish database connection in eclipse -