It looks like this might be impossible, but I was just curious if anyone had solved this.
Basically I have a 3 line chart title where the first line is Bold anf 18 point font, the second line is 14 point and itallic and bold and the third line is 12 point and italic.
I set the chart title through code below:
So I'd like "East Region" to be 18 point font, "PTS Actual/Projected FTE Utilisation by Project" to be 14 point and bold and "(for the 18 months ended September 30, 2012)" to be 12 point and itallic.
Has anyone solved this using the ChartTitle? I'm sure it could be done by inserting 3 text boxes but that isn't an option I'm allowed in this particular exercise....
Basically I have a 3 line chart title where the first line is Bold anf 18 point font, the second line is 14 point and itallic and bold and the third line is 12 point and italic.
I set the chart title through code below:
Code:
Sheets(myRegion).ChartTitle.Text = _
"East Region" & Chr(13) & "PTS Actual/Projected FTE Utilisation by Project" & _
Chr(13) & "(for the 18 months ended September 30, 2012)" & Chr(13) & ""
So I'd like "East Region" to be 18 point font, "PTS Actual/Projected FTE Utilisation by Project" to be 14 point and bold and "(for the 18 months ended September 30, 2012)" to be 12 point and itallic.
Has anyone solved this using the ChartTitle? I'm sure it could be done by inserting 3 text boxes but that isn't an option I'm allowed in this particular exercise....