π¨βπ«Weekly Progress Plot
Introduction
This is the weekly progress plot that takes multiple inputs of target and achieved goals (similar to the target donut plot) and creates multiple donut plots, each representing the days in a week. The function receives pairs of target and achieved values for each day and shows the progress accordingly.

Code Example
To create a weekly progress plot, we need to pass in the item pairs of target and achieved values, similar to the Donut Plot Row charts.
Example of a row donut plot :-
// List containing 7 elements for all the seven days.
var dataSet: List<TargetDataStrategy>
// This function creates the plot
WeeklyProgressPlot(weeklyData = dataSet) // weeklyData take List<TargetDataStrategy>
Last updated
Was this helpful?