Pivot Chart Color Theme Customization Possible?

KDavidP1987

Board Regular
Joined
Mar 6, 2018
Messages
51
Hey All,

Just a quick question I cannot find an article or answer to.

I have a table of data represented in pivot tables/charts. It covers several call center metrics in a line graph format (Calls Offered, Calls Answered, Calls Abandoned). I want to set a monochromatic color scheme / year for the data, so that they the graphs don't look like a ClusterF. Unfortunately, when I apply color schemes it will only apply it to the whole graph. Is there a way to specify Pivot Table color scheme per series of data (what appears in the Columns section [Year, and Values]), so that each year gets its own monochromatic color scheme.

As we are moving into 2019 my boss asked that I overlay the 2019 metrics with previous years data so that management can compare. Unfortunately, since the graphs show multiple metrics it just makes them look horrible in the overlay.

Sincerely,

Kris
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Hey Kris

Each series can be formatted individually:

Code:
Sub FormatSeries()
Dim s As Series, i%, sn$
sn = ""
ActiveSheet.ChartObjects("Chart1").Activate
For i = 1 To ActiveChart.SeriesCollection.Count
    Set s = ActiveChart.FullSeriesCollection(i)
    sn = sn & s.Name & vbLf
    With s.Format.Line
        .Visible = msoTrue
        .ForeColor.ObjectThemeColor = i + 4
        .ForeColor.TintAndShade = 0
        .ForeColor.Brightness = 0.6
        .Transparency = 0.1
    End With
Next
MsgBox sn, 64, "Formatted series"
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,636
Messages
6,120,669
Members
448,977
Latest member
moonlight6

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