Hi
I tried to set multiline chart series label in (column/line/bar/...) to Left Justify.
by default, currently, only show right justify.
tried with horizontalalign near/far, seems like not these ones.
Any help ?
Thanks
Thanks for your response. If you have any questions, feel free to write us,
Thanks Georgi, sorry been away for other project. Now back to this project.
i used "/n" or ascii "10" for set the newline
label = string(dateFr) + " - " + chr(10) + string(dateTo).
or
label = string(dateFr) + " - " + "~n" + string(dateTo).
for using Environment.Newline, i think, i have to skip this way, since Progress 10 (which incorporate with C# .Net) does not support this syntax.
I might try FillsceneGraphe event, will update asap.
cheers
Hello hermanw,
Thanks for attached screenshots and snipet code. Looking at that information (because it is not enought ), I suppose that your label`s text is only wrapp on multiple lines, that`s why the first line is align, but the second line is not align proper. Could you please try to insert between both words Enviroment.Newline.
Other approach could be to add new Text primitives using the FillSceneGraphe event and align the text with Offset() method.
Let me know if you have any further questions.
Regards
the code is quite simple.
pls see attachment : partial code for chart only.
Currently, the row label = series label has 2 lines, and by default : right justify/align (Red color)
Desired behavior, left justify/align (Green color)
left chart : series label orientation = horizontal and col label visible
right chart : series label orientation = verticalleftfacing and col label not visible