ASE Home Page Products Download Purchase Support About ASE
ChartDirector Support
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  x-axis labels on stacked bar graph
Posted by steve on May-14-2013 10:12
Is there a way to add a "break" on the x axis labels of the stacked bar graph? I would like to add another line (centered) under the label that is already there. I tried adding a simple "<br />" but that didn't work.
Any help would be greatly appreciated!

  Re: x-axis labels on stacked bar graph
Posted by Peter Kwan on May-14-2013 22:26
Hi steve,

Yes. You can just use a line break. In most programming languages, a line break is "\\n". For example, in C++/C#/PHP/Perl/Python/Ruby:

"First Line\\nSecond Line"

In VB/VBScript/VBA, the line break is vbLF, like "First Line" & vbLF & "Second Line".

Another method is to add <*br*>, like:

"First Line<*br*>SecondLine"

Hope this can help.

Regards
Peter Kwan

  Re: x-axis labels on stacked bar graph
Posted by steve on May-15-2013 00:52
Thank you!!