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"
To show only the last items added we are using the following formula:
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)
We are assuming a small chunk of dataset is being created in our local collection. Work with big datasets in a collection can cause performance issues.
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
For more information about column chart please check lowcodera docs
Use the panel component to create a nice background to the chart

Last updated