Hi @chhe ,
How and when do you calculate and show the value in these text input boxes? Please share more about this.
The problem may be that when you create the collection at App.OnStart, there is no value in the text box, so the collection and Pie chart is empty.
Please consider creating the collection after the field calculation is complete.
Otherwise, you can replace the TextInput.Text by the calculate code into ClearCollect funciton at App.OnStart, like this:
ClearCollect(Col_1, {Value:<The code of calcuation>, Label: "Category1"},{Value:<The code of calcuation>, Label: "Category2"},{Value:<The code of calcuation>, Label: "Category3"},{Value:<The code of calcuation>, Label: "Category4"},{Value:<The code of calcuation>, Label: "Category5"})
Hope this helps.
Sik