简体   繁体   中英

Align scatter plot to right side in highcharts

在此处输入图片说明

See the demo link here Sample

$(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 you can have your url
                symbol: 'circle',
            }
        }]
    });
});

I am trying to align the scatter plots which currently center aligned respective to the column chart. I want those to be right aligned respective to the column chart

您可以使用带数字值的pointPlacement参数。

For a category chart you can still specify an x-value in your data series. An x-value of N.25, is the right edge of the column, 0.25, 1.25, 2.25, etc...

       {
            name: 'indicator',
            data: [[0.25,5]],
            type: 'scatter',
            marker:{
                //here you can have your url
                symbol: 'circle',
            }
        }

Updated fiddle .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM