Drill Down does not work on Dashboard

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
lfernandes
User
Posts: 77

Drill Down does not work on Dashboard

Post by lfernandes »

The Dashboard Page apparently generates the graph reference without informing the Drill Down url, see the generated code:

@{
View = this; // Restore View // DN
reportConformidadePorRegional.ConformidadePorRegional.Width = 0;
reportConformidadePorRegional.ConformidadePorRegional.Height = 0;
reportConformidadePorRegional.ConformidadePorRegional.SetParameter("clickurl", "reportconformidadeporregional"); // Add click URL
reportConformidadePorRegional.ConformidadePorRegional.DrillDownUrl = ""; // No drill down for dashboard
@await reportConformidadePorRegional.ConformidadePorRegional.Render("ew-chart-top");
}
@* Chart (end) *@


lfernandes
User
Posts: 77

Post by lfernandes »

I verified that the generated dashboard.cs file assigns the false value to DrillDown, see how the properties are defined:

     // Dashboard properties
        public string DashboardType = "custom";

        public List<string> ItemClassNames = new () { "col-sm-12", "col-sm-12", "col-sm-12", "col-sm-12", "col-sm-12", "col-sm-12", "col-sm-12", "col-sm-12", "col-sm-12", "col-sm-12", "col-sm-12" };

        public bool DrillDown = false;

        public bool DrillDownInPanel = true;

        public string Filter = "";

        public string TableVar = "DashboardVisaoGeral";

        private string _tableCaption = null;

MichaelG
User
Posts: 1111

Post by MichaelG »

Dashboard reports are for display only and do not support drilldown. You need to go back to the original report for the drilldown report.


Post Reply