Hi there, this is the structure of my data
{int id, int ring, string phase} where id=1, 2, ..., 16, ring=1,2,3,4, phase = short string
The report I want is shown on desired_report.gif
What you see in the boxes are
|=============================
| Sequence - {id} | <==== title of the box
=============================
| Ring {ring} | {phase} | <==== this section grows vertically (per id/sequence)
=============================
I tried doing something similar without much success all I've got is this report shown in havethis_report.gif
the layout of the report (design mode) is shown in layout_report.gif
the structure of the report is shown in explorer_report.gif
for the list lstDetailData I have the following :
row group expression: "(Field.Ids+Fields.Ring-2)%32"
column group expression: "(Field.Ids+Fields.Ring-2)/32"
What occurred to me is to hide the title every four elements like this:
textBox4.Bindings.Add(new Binding("Visible", "= Fields.Ring = 1"));
txtId.Bindings.Add(new Binding("Visible", "= Fields.Ring = 1"));
but you can still see some spaces left when that element is not visible, shown in almosthere_report.gif
my questions:
1) can this even be done using telerik reporting?
2) how do I make the space of a hidden object on a report also go away.?
regards and thanks in advance.
{int id, int ring, string phase} where id=1, 2, ..., 16, ring=1,2,3,4, phase = short string
The report I want is shown on desired_report.gif
What you see in the boxes are
|=============================
| Sequence - {id} | <==== title of the box
=============================
| Ring {ring} | {phase} | <==== this section grows vertically (per id/sequence)
=============================
I tried doing something similar without much success all I've got is this report shown in havethis_report.gif
the layout of the report (design mode) is shown in layout_report.gif
the structure of the report is shown in explorer_report.gif
for the list lstDetailData I have the following :
row group expression: "(Field.Ids+Fields.Ring-2)%32"
column group expression: "(Field.Ids+Fields.Ring-2)/32"
What occurred to me is to hide the title every four elements like this:
textBox4.Bindings.Add(new Binding("Visible", "= Fields.Ring = 1"));
txtId.Bindings.Add(new Binding("Visible", "= Fields.Ring = 1"));
but you can still see some spaces left when that element is not visible, shown in almosthere_report.gif
my questions:
1) can this even be done using telerik reporting?
2) how do I make the space of a hidden object on a report also go away.?
regards and thanks in advance.