• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Changing the axes font characterstics of excel charts using vba

aprvvsh

New Member
Changes made to the axes scales are not reflected after running the vba code.
Code:
ActiveChart.Axes(xlValue).Select
  With Selection.Format.TextFrame2.TextRange.Font
  .BaselineOffset = 0
  .Fill.Visible = msoTrue
  .Fill.ForeColor.ObjectThemeColor = msoThemeColorText1
  .Fill.ForeColor.TintAndShade = 0
  .Fill.ForeColor.Brightness = 0
  .Fill.Transparency = 0
  .Fill.Solid
  End With
 
Back
Top