Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Win XP HE, XL 2002 SP3
Hi, I cannot find out how to center the title of the chart AND the axis title on the chart area so that it is precisely centered (not manually). How does one go about it? Tx, S |
#2
![]() |
|||
|
|||
![]()
Hi,
This code will center charttitle and xaxis title within chartarea. '------------------------------ Sub CenterChartTitles() ' ' Center within chart area then chart title and xaxis title, if present. ' ' Text items have no Width property so use an approximation. ' Force text to far right and use the difference between actual ' and expected position to approx width. ' Dim sngWidth As Single With ActiveChart If .HasTitle Then With .ChartTitle .Left = ActiveChart.ChartArea.Width sngWidth = ActiveChart.ChartArea.Width - .Left .Left = (ActiveChart.ChartArea.Width - sngWidth) / 2 End With End If If .Axes(1, 1).HasTitle Then With .Axes(1, 1).AxisTitle .Left = ActiveChart.ChartArea.Width sngWidth = ActiveChart.ChartArea.Width - .Left .Left = (ActiveChart.ChartArea.Width - sngWidth) / 2 End With End If End With End Sub '------------------------------ Cheers Andy saturnin02 wrote: Win XP HE, XL 2002 SP3 Hi, I cannot find out how to center the title of the chart AND the axis title on the chart area so that it is precisely centered (not manually). How does one go about it? Tx, S -- Andy Pope, Microsoft MVP - Excel http://www.andypope.info |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Right axis instead of left axis in chart | Excel Discussion (Misc queries) | |||
Formatting dates on x axis of chart...! | Excel Discussion (Misc queries) | |||
How do I set permanent secondary axis in PivotTable chart? | Charts and Charting in Excel | |||
Second X axis at top of chart? | Charts and Charting in Excel | |||
Labels on Chart with Negative Value Axis | Charts and Charting in Excel |