Need Gradient on bar with more than 2 colors

Invisibleman

New Member
Joined
Sep 16, 2015
Messages
21
Dear all,

For my Combo-chart on the bars I would have multiple colors for each bar point. However, in the VBA when I set to change the colors higher than 2 I got the error "Invalid procedure call or argument".

If I set the colors thru excell then I indeed see multple colors, but how to get this in VBA? And also as the colors are depending on the % from a cell, the colors may need to chage, based on the %.

In the excell I have this for testing;
Example Bar.jpg


and the code I am trying is, where in general I will have 4 different colors which all can change;

VBA Code:
 With ChartObjects("BAR12").Chart.SeriesCollection(3).Points(PointNr).Format.Fill
                       .ForeColor.RGB = RGB(255, 0, 0) 'MainBarColor(1)
                       .BackColor.RGB = RGB(0, 255, 0) 'MainBarColor(3)
                       
                        ChartObjects("BAR12").Chart.SeriesCollection(3).Points(PointNr).Border.Color = vb3DDKShadow
                    
                        .TwoColorGradient Left(varColorSettings(6, 2), 2), 2
                        .GradientStops(1).Color = MainBarColor(1) 'This works okay
                        .GradientStops(2).Color = MainBarColor(2) 'This works okay
                        .GradientStops(3).Color = MainBarColor(3) 'This generate the error
                      ''  .GradientStops.Insert MainBarColor(4)
                        .ForeColor.Brightness = varColorSettings(5, 2)
    End With

If anybody can help, that would be very appriciated.

With kind regards,
Hans
 

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