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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -