Drilling Down Report in Live
Our sample projects and report templates can help you learn the basics of working with our products.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
How it works. The master report stays open; each click builds a small filtered report on the fly, so navigation feels instant.
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 handlerreport.Click— fires when a component is clicked; the handler reads the element'sBookmarkValueand loads a detail report filtered by it.StiCalculationMode.Interpretation— renders without compiling, so drill-downs open instantly.
How it works. The master report stays open; each click builds a small filtered report on the fly, so navigation feels instant.