Hi,
i created an Report dynamically.
In the InitializeComponent Function i create a Table, Chart or an Pie. Or all.
if (datas.PresentationType == "1")
{
CreateTable(datas.ResultTable);
}
else if (datas.PresentationType == "2")
{
CreatePieAndGraph(datas);
}
else if (datas.PresentationType == "3")
{
CreateTable(datas.ResultTable);
CreatePieAndGraph(datas);
}
That works. But i want to have, that the Table is on one side, the pie on the next side und the graph is on next side.
Can i do this with PageBreak?
Every chart, pie or table is in the detail section of my report.
I dind´t set the location for pie, table and graph.
So it looks like:
i created an Report dynamically.
In the InitializeComponent Function i create a Table, Chart or an Pie. Or all.
if (datas.PresentationType == "1")
{
CreateTable(datas.ResultTable);
}
else if (datas.PresentationType == "2")
{
CreatePieAndGraph(datas);
}
else if (datas.PresentationType == "3")
{
CreateTable(datas.ResultTable);
CreatePieAndGraph(datas);
}
That works. But i want to have, that the Table is on one side, the pie on the next side und the graph is on next side.
Can i do this with PageBreak?
Every chart, pie or table is in the detail section of my report.
I dind´t set the location for pie, table and graph.
So it looks like: