Default chart font color and size

joyousrob

Board Regular
Joined
Nov 12, 2014
Messages
56
Hi guys,

I'm looking for a way to change the default font (Calibri to Arial) and color (gray to black) as well as font size (8 to 10). On all old and/or new graphs I make on excel.

I have been scouring online and haven't found a way to change the graphs defaults, the only way I have found how to do this is through macros, am I wrong? is there a way to change the default graphs? Have to make a lot of them and don't want to change each one individually.

Macros I have found look something like the one below but don't fully accomplish what I want, and in the case of the one below are not working.

Sub DL()


Dim chSeries As Series

For Each chSeries In Charts(1).SeriesCollection
With chSeries.DataLabels.Font
.Name = "Arial"

.Size = 10
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = 50
.Background = xlAutomatic
End With
Next


End Sub


Any help is most welcome

THANKS!
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"

Forum statistics

Threads
1,214,561
Messages
6,120,228
Members
448,951
Latest member
jennlynn

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