Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Draw.TextFixed()...

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

    Draw.TextFixed()...

    Looking to make the font size larger. Old days would be -> new Font('blah'), now that doesn't seem to be the syntax. According to the docs this is what I have, but again, the font is too small. Any help would be greatly appreciated:

    Code:
    Draw.TextFixed(this, "status", "Value", TextPosition.TopRight, Brushes.White, ChartControl.Properties.LabelFont, Brushes.Transparent, Brushes.Orange, 100);

    #2
    Hello funk101,

    Thank you for writing in.

    You'll want to pass a new SimpleFont object to the overload of Draw.TextFixed() that takes a SimpleFont parameter:

    Code:
    Draw.TextFixed(NinjaScriptBase owner, string tag, string text, TextPosition textPosition, Brush textBrush, SimpleFont font, Brush outlineBrush, Brush areaBrush, int areaOpacity)
    More information about the SimpleFont class can be found here: https://ninjatrader.com/support/help...font_class.htm

    Please, let us know if we may be of further assistance.
    Zachary G.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by judysamnt7, 03-13-2023, 09:11 AM
    4 responses
    59 views
    0 likes
    Last Post DynamicTest  
    Started by ScottWalsh, Today, 06:52 PM
    4 responses
    36 views
    0 likes
    Last Post ScottWalsh  
    Started by olisav57, Today, 07:39 PM
    0 responses
    7 views
    0 likes
    Last Post olisav57  
    Started by trilliantrader, Today, 03:01 PM
    2 responses
    21 views
    0 likes
    Last Post helpwanted  
    Started by cre8able, Today, 07:24 PM
    0 responses
    10 views
    0 likes
    Last Post cre8able  
    Working...
    X