Hello all,
I have 2 charts on a pdf page. They appear one after the other.
I would like them to appear side by side on the page?
Not seeing a way to do this. Any help would be appreciated.
Thanks
Deasun
{vb.net :) }
The Flow has an Alignment property that you can set to ContentAlignment.Center.
one quick one, if I had only one chart is there an easy why to center it on the page? Something like flow.center. :)
Great. That sounds simpler than the approach I was taking. I was able to add a space between the grid and charts, by calling AddGap() on the section after exporting the grid, and then specifying the FixedHeight of the gap.
I put space between the charts by adding two columns to the Flow, and specifying the appropriate Margins (Right for the first column, and Left for the second). Finally, before creating the second canvas, I add a ColumnBreak to the flow.
Let me know if you have any other questions.
Chris
Managed to get the result I wanted using;
canvas.Paddings.All = 5
and turning the borders thickness to 0.
Do have a new question,
Is there a way to insert a blank line below the grid and the charts?
Also a space to separate the charts from each other?
thanks
Again.
:)