jayman18 Posted April 26, 2016 Report Share Posted April 26, 2016 Hello, how to get rid of the space between chart and the surrounding box and full use the space? Furthermore I need to have a fix space between chart area and underlying data grid. In the picture, you see the space (the red lines). I want the pie to fill it completely Another question or if first is not possible: Can I align the chart to the box bottom or box top? Thanks in advance! Quote Link to comment Share on other sites More sharing options...
0 JuanC Posted April 26, 2016 Report Share Posted April 26, 2016 You can remove that space by adding the following code var plotMargin = chart1.getPlotAreaMargin(); plotMargin.setLeft(1); plotMargin.setTop(1); plotMargin.setRight(1); plotMargin.setBottom(1); Note that 1 is the minimum value for the margins as 0 means to use our defaults. Regards, JuanC Quote Link to comment Share on other sites More sharing options...
Question
jayman18
Hello,
how to get rid of the space between chart and the surrounding box and full use the space?
Furthermore I need to have a fix space between chart area and underlying data grid.
In the picture, you see the space (the red lines). I want the pie to fill it completely
Another question or if first is not possible: Can I align the chart to the box bottom or box top?
Thanks in advance!
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.