Episode 05
In this episode let's build a simple but powerfull dashboard!
The gallery
Follow this steps for creating the gallery:
Insert a vertical blank gallery
Connect to the list Work Progress Tracker
Insert inside the gallery lowcodera panel component. Turn off the shadow using EnableShadow property.
Insert lowcodera icons (check, calendar)
Add one label for the description of the task
Add another label for the due date. For formating use the following: Text(ThisItem.'Due date', "dd mmmm yyyy"
LastN(WorkProgressTracker,4)
Cards
To create the cards as below please follow the steps:

Insert lowcodera Panel component for each of the KPI's (Not assigned tasks, Overdue and All tasks)
Use the table below for giving the right attributes for each of the cards.
KPI on Description property
Icon on Icon property
Formula on Title property
Not assigned tasks
exclamation
CountRows(Filter(colWorkProgressTracker, 'Assigned to'.Email = Blank()))
Overdue
clock
CountRows(Filter(colWorkProgressTracker, 'Due date' > Today()))
All tasks
check
CountRows(colWorkProgressTracker)
Summary Chart
To create the summary chart, please follow these steps:
Import the component column chart
Use the following Power Fx formula to organize the data
Table(
{
name: "Priority",
data: [
{
label: "Low",
value: CountRows(Filter(collWorkItems,Priority = "Low"))
},
{
label: "Medium",
value: CountRows(Filter(collWorkItems,Priority = "Medium"))
},
{
label: "High",
value: CountRows(Filter(collWorkItems,Priority = "High"))
},
{
label: "Critical",
value: CountRows(Filter(collWorkItems,Priority = "Critical"))
}]
}
)
For more information about column chart please check lowcodera docs

Last updated