Report variables receive values from the Blazor UI; assign them by name on a copy of the report, then re-render.

Set a variable and re-render.
var report = Report.Clone() as StiReport;

report["MySuperUselessVariable"] = NewValueInput;
report.Render();

Report = report;

How it works. The value entered in the input box is bound into the report before rendering, so the viewer immediately shows the updated result.

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.