Wizard
Posted: Wed Jun 21, 2006 6:46 am
How to work with wizard in code?
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
Code: Select all
StiReport report = new StiReport();
report.RegData("MyData", dataSet1);
report.Dictionary.Synchronize();
Stimulsoft.Report.Design.Wizards.StiStandardWizardService wizard =
new Stimulsoft.Report.Design.Wizards.StiStandardWizardService();
StiReport newReport = wizard.CreateReport(report);
if (newReport != null)newReport.Design();