I have the following elements:
1. MigraDoc.DocumentObjectModel.Shapes.Charts.Chart
2. MigraDoc.DocumentObjectModel.Tables.Table
I want to show the data table (2) on the right side of the chart (1). Something like a legend, but with more information. This custom table will give more information than the standard legend.
For some reason, I can add them one above the other by using:
PdfDoc.LastSection.Add(Chart);
PdfDoc.LastSection.Add(Table);
But this is vertical addition. Can I place them horizontally?