Hi @myonlywan,
Do you want to display the average rating (the average rating of Rating1&Rating2&Rating3) for each product team in the Pie chart control?
If you want to display the average rating (the average rating of Rating1&Rating2&Rating3) for each product team in the Pie chart control, I have made a test on my side, please take a try with the following workaround:
Set the Items property of the Pie chart control to following formula:
AddColumns(
GroupBy(mainlogfile,"ProductName","GroupData"),
"AverageRating",
Sum(ForAll(GroupData,Rating1+Rating2+Rating3),Value)
)
Note: The mainlogfile represents the mainlogfile table in your Excel file.
But the Pie chart control could not display the detail value for the average rating of each product currently, as an alternative solution, you could consider take a try to add a Label control beside each pie as below:

Set the Text property of the Label1 control to following:
LookUp(AddColumns(GroupBy(mainlogfile,"ProductName","GroupData"),"AverageRating",Sum(ForAll(GroupData,Rating1+Rating2+Rating3),Value)),ProductName="Apple").AverageRating
Set the Text property of the Label2 control to following formula:
LookUp(AddColumns(GroupBy(mainlogfile,"ProductName","GroupData"),"AverageRating",Sum(ForAll(GroupData,Rating1+Rating2+Rating3),Value)),ProductName="Watermelon").AverageRating
Set the Text property of the Label3 control to followig formula:
LookUp(AddColumns(GroupBy(mainlogfile,"ProductName","GroupData"),"AverageRating",Sum(ForAll(GroupData,Rating1+Rating2+Rating3),Value)),ProductName="Banana").AverageRating
Set the Text property of the Label4 control to following formula:
LookUp(AddColumns(GroupBy(mainlogfile,"ProductName","GroupData"),"AverageRating",Sum(ForAll(GroupData,Rating1+Rating2+Rating3),Value)),ProductName="Orange").AverageRating
Best regards,
Kris