Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Draw multiple lines with Draw.TextFixed in the upper left

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Draw multiple lines with Draw.TextFixed in the upper left

    Hello,

    I would like to plot in the upper left of a chart three status lines.

    How can I use Draw.TextFixed to plot more than one line in the TopLeft in an easy way?

    Best regards
    Gerik

    #2
    Hello Gerik,

    Thanks for your post.

    You could write to a string and then use "\n" to indicate that a new line should be drawn.

    For example:

    Code:
    protected override void OnBarUpdate()
    {
        string myString = "line 1 \n" + "line 2";
        Draw.TextFixed(this, "tag", myString, TextPosition.TopLeft);
    }
    I look forward to being of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    46 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    67 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    35 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    95 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    59 views
    0 likes
    Last Post PaulMohn  
    Working...
    X