A click on a report element can open a filtered detail report — interactive drill-down, live in the Avalonia viewer.

Load, register data, and handle clicks. Bind the data and subscribe to the report's Click event:
var report = new StiReport();
report.Load(AssetLoader.Open(new Uri("avares://…/LiveReports.mrt")));
report.RegData(dataSet1);
report.CalculationMode = StiCalculationMode.Interpretation;

report.Click += click;   // drill-down handler

How it works. The master report stays open; each click builds a small filtered report on the fly, so navigation feels instant.

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.