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

Message ListMessage List     Post MessagePost Message

  Additional Text (vertical) at marker lines
Posted by Sinan Tuncer on Nov-28-2023 23:53
Hello,

if i set markers like so:

            Mark *mark = c.xAxis()->addMark(backtestDate, MARK_COLOR, backtestDateIt->date);
            mark->setFontColor(MARK_LABEL_COLOR);


I would like to add a vertical text left to the marker containing for example "bt-10".

Couldn't figure out how to achive this.

Regards,
Sinan

  Re: Additional Text (vertical) at marker lines
Posted by Peter Kwan on Nov-29-2023 11:27
Hi Sinan,

In the example below, the marker with the text "Backup Start" seems to match your requirement:

https://www.advsofteng.com/doc/cdcpp.htm#markzone2.htm

Best Regards
Peter Kwan

  Re: Additional Text (vertical) at marker lines
Posted by Sinan Tuncer on Nov-30-2023 00:23
Thank You!