A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
As far as I can tell, it's not possible to set the alignment in the interface.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi Folks,
In a multi line data lable the text is centered, is there any reasonableway to left align it?
I realize one can type the data label text manually following it with characters which you then turn white, for example
You can enter some dummy characters as below and then you can highlight the dummy characters and set their font to whie. I don't consider this reasonable.
| Sept 2001 YTD <br><br>Brazil -------------- <br><br>34.56 -------------- <br><br>5% ------------------ |
|---|
| Sept 2001 YTD <br><br>Brazil <br><br>34.56 <br><br>5% |
|---|
TIA,
Shane
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
As far as I can tell, it's not possible to set the alignment in the interface.
Answer accepted by question author
If you mean the data labels of a chart series: set its HorizontalAlignment property to xlLeft:
ActiveChart.SeriesCollection(1).DataLabels.HorizontalAlignment = xlLeft
If you mean the tickmark labels of the category axis, I don't see an elegant way to force left aligned text: the Alignment property of the TickLabels object determines where the label is displayed within the category; it doesn't afffect the text alignment.
Hi,
I can program it, but can it be set manually in 2010.
TIA,
Shane