@v-xiaochen-msft This worked perfectly!!
I created a button with the following code:
Collect(SVMLeadTracker, AddColumns(SVMLeadChart.AllItems, Total, Value(SVMLeadCount.Text) ,
SVMLead, SVMTeamMember.Text & " " & Value(SVMLeadCount.Text) ) );
//Create Row for Dummy User
ClearCollect(SVMLeadDummy,
{SVMLead: "No SVM Leads" & " " & CountIf(SVMRequests, IsBlank('SVM Lead')),
Total: CountIf(SVMRequests, IsBlank('SVM Lead'))}
);
//Insert new dummy row
ClearCollect(SVMLeadTracker2, SVMLeadTracker);
Collect(SVMLeadTracker2, SVMLeadDummy);
Set(ShowSVMLeadChartContainer, true)
The code works perfectly in the portal studio (below).

But when I publish the app, the FIRST time users click on the button that displays the graph, they see this (below):

When the user closes the graph and then opens it again, the information is displayed correctly.
The number 42 is a total for one person; each other person has their own totals as shown in the first screenshot. Any idea how to make sure the collection is run correctly outside of the app studio the first time?