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

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

c# - Search and Add Comment with OpenXML for Word -