开发者

Highcharts padding between plot and graph, how to remove?

开发者 https://www.devze.com 2023-03-22 08:57 出处:网络
How can i remove padding betwee开发者_如何转开发n my chart and plot. I want my chart to start from the edge of plot and end the same way, but no matter what I try, i cannot remove padding :(

How can i remove padding betwee开发者_如何转开发n my chart and plot. I want my chart to start from the edge of plot and end the same way, but no matter what I try, i cannot remove padding :(

Thanks!


You can do that with:

    plotOptions: {
    series: {
        pointPadding: 0,
        groupPadding: 0,      
        }
    },

See working example at jsfiddle: https://jsfiddle.net/d9854qLm/.

Hope that is what you want.

0

精彩评论

暂无评论...
验证码 换一张
取 消