Page 1 of 1

Generate report with nested arrays?

Posted: Sat Sep 25, 2021 9:15 am
by Mds1
I'm new in Stimulsoft Report.
I want to know how can I generate the following report in Stimulsoft Report.
Assume we have the following data:

Code: Select all

{
   "Questions": [
      {
         "QuestionTitle": "Question Title 1",
         "Actions": [
            "Action 1-1",
            "Action 1-2",
            "Action 1-3"
         ],
         "Materials": [
            "Material 1-1",
         ]
      },
      {
         "QuestionTitle": "Question Title 2",
         "Actions": [
            "Action 2-1",
            "Action 2-2",
         ],
         "Materials": [
         ]
      },
      {
         "QuestionTitle": "Question Title 3",
         "Actions": [
            "Action 3-1",
            "Action 3-2",
         ],
         "Materials": [
            "Material 3-1",
            "Material 3-2",
            "Material 3-3",
            "Material 3-4",
            "Material 3-5"
         ]
      }
   ]
}
Now I want to generate a report like as follows:
Report Sample
Report Sample
report-sample.JPG (32.53 KiB) Viewed 718 times
Thanks in advance

Re: Generate report with nested arrays?

Posted: Mon Sep 27, 2021 1:41 pm
by Lech Kulikowski
Hello,

You can use the master-detail construction with panels.

Thank you.