Announcements
In Power Apps, when customizing the Pie Chart colors, you can define them using the Color property with an array of RGBA or Hex values. Since Power Apps does not have built-in named colors like "Artistic Blue" or "Fall Gold," you can approximate them using their closest hex or RGBA values.
Color
Try setting the Color property of your Pie Chart to something like this:
[ RGBA(0, 116, 217, 1), // Artistic Blue (#0074D9) RGBA(255, 168, 18, 1), // Fall Gold (#FFA812) RGBA(84, 127, 165, 1) // Vanadyl Blue (#547FA5) ]
Or using hex values (if supported in your control):
["#0074D9", "#FFA812", "#547FA5"]
You can set the colors of the Pie Chart slices in PowerApps using the ChartColors property. Since PowerApps uses RGBA or Hex codes for colors, here are the closest color codes for the shades you mentioned:
ChartColors
RGBA(0, 102, 204, 1)
#0066CC
RGBA(255, 153, 51, 1)
#FF9933
RGBA(50, 130, 189, 1)
#3282BD
Set the ChartColors property of your Pie Chart as follows:
ChartColors = [RGBA(0, 102, 204, 1), RGBA(255, 153, 51, 1), RGBA(50, 130, 189, 1)]
This will apply the specified colors to the three slices of your Pie Chart in PowerApps.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
11manish 536
WarrenBelz 426 Most Valuable Professional
Haque 305