Colour wheel pie chart

Chameleon64

New Member
Joined
May 10, 2018
Messages
40
Hi

I'm trying to create a gradual colour wheel in a pie chart style which starts from dark red at 12 o'clock, gradually changes clockwise to yellow and then to green to complete the wheel.

I've tried an autoshape but this doesn't generate the gradual colours in the way I'm looking for. I've also tried creating a pie chart and using VBA to change the RGB value but it's getting too complicated.

Any ideas??
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
I figured it out in the end by creating a pie chart with 512 points and using the following VBA to colour-fill:

Code:
Sub ColourWheel()

For i = 1 To 512
With ActiveSheet.ChartObjects(1).Chart
        .SeriesCollection(1).Points(i).Interior.Color = RGB(512 - i, i, 0)
    End With
Next i


End Sub
 
Upvote 0

Forum statistics

Threads
1,215,504
Messages
6,125,183
Members
449,212
Latest member
kenmaldonado

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top