Hi @DJIX12 ,
Colors in the pie chart are assigned in order at which they are in the ItemColorSet property of the PieChart control.
For instance, with the ItemColorSet property set to [Color.Green, Color.Red]
When setting the Items property to first show the True percentage ( [{Label: "True", Percentage: 70}, {Label: "False", Percentage: 30}] ), this is what the chart looks like:

However, if you first offer the false percentage ( [{Label: "False", Percentage: 30}, {Label: "True", Percentage: 70}] ), the colours are reversed:

So if you want a certain label to match with a certain colour, match the position in the tables for the Items and ItemColorSet.