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

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -

java - How to specify maven bin in eclipse maven plugin? -