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
Hello hermanw,
I`m not sure that I understand well your issue. Are you able to send us screenshot with your current behvaior and another one with desired behavior. It will be very helpfull if you are able to upload your sample. By this way I`ll be able to take a look at your settings.
Let me know if you have any questions.
Regards
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
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
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.
the code is quite simple.
pls see attachment : partial code for chart only.