javascript - Align scatter plot to right side in highcharts -


enter image description here

see demo link heresample

$(function () {     $('#container').highcharts({         <some codes>         plotoptions: {             column: {                 stacking: 'normal',                 datalabels: {                     enabled: true,                     color: (highcharts.theme && highcharts.theme.datalabelscolor) || 'white'                 }             }         },         series: [{             name: 'john',             data: [5, 3, 4, 7, 2]         }, {             name: 'jane',             data: [2, 2, 3, 2, 1]         }, {             name: 'joe',             data: [3, 4, 4, 2, 5]         },{             name: 'indicator',             data: [5],             type: 'scatter',             marker:{                 //here can have url                 symbol: 'circle',             }         }]     }); }); 

i trying align scatter plots center aligned respective column chart. want right aligned respective column chart

you can use pointplacement parameter number value.


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -