Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Inline Font Specs in Draw.TextFixed?

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

    Inline Font Specs in Draw.TextFixed?

    Hi!

    How can I set font specifications inline in a Draw.TextFixed line such as this?

    {

    Draw.TextFixed(this, "sometag", "sometext", TextPosition.TopRight);
    }

    Thanks.


    #2
    Hello chartchart,

    Thank you for your post.

    To set a custom font style for Draw.TextFixed(), you would first need to use SimpleFont in State.DataLoaded to define a custom font style. Then, you would use the following Draw.TextFixed() syntax to use a custom font for the text drawn.

    Draw.TextFixed(NinjaScriptBase owner, string tag, string text, TextPosition textPosition, Brush textBrush, SimpleFont font, Brush outlineBrush, Brush areaBrush, int areaOpacity)

    See the attached example script demonstrating using Draw.TextFixed() with a custom font style.

    Also, see the help guide documentation below for more information.
    Draw.TextFixed() - https://ninjatrader.com/support/help..._textfixed.htm
    SimpleFont - https://ninjatrader.com/support/help...font_class.htm

    Let us know if we may assist further.
    Attached Files
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    Comment


      #3
      Thank you for your quick response.

      I followed your instructions and am receiving a CS0103 for both the definition line and the Draw.TextFixed line:

      "The name myFont does not exist in the current context".


      Parts from the document...

      else if (State == State.DataLoaded)
      {
      myFont = new NinjaTrader.Gui.Tools.SimpleFont("Courier New", 20);
      }

      and...

      protected override void OnBarUpdate()
      {

      Draw.TextFixed(this, "myTextFixed", "Hello world!", TextPosition.BottomRight, ChartControl.Properties.ChartText, myFont, Brushes.Blue, Brushes.Transparent, 0);
      }


      Any ideas?

      Comment


        #4
        Hello chartchart,

        Thank you for your note.

        The error message you are reporting means that you are trying to use an object (myFont) before it has been created.

        Did you create the myFont object at the beginning of the script as seen below from the DrawTextFixedCustomFont example script?

        private NinjaTrader.Gui.Tools.SimpleFont myFont;

        See the attached strategy example that demonstrates using a custom font for Draw.TextFixed() within a strategy.

        Let us know if we may assist further.
        Attached Files
        <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

        Comment


          #5
          Thank you!

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by NullPointStrategies, Today, 05:17 AM
          0 responses
          41 views
          0 likes
          Last Post NullPointStrategies  
          Started by argusthome, 03-08-2026, 10:06 AM
          0 responses
          124 views
          0 likes
          Last Post argusthome  
          Started by NabilKhattabi, 03-06-2026, 11:18 AM
          0 responses
          64 views
          0 likes
          Last Post NabilKhattabi  
          Started by Deep42, 03-06-2026, 12:28 AM
          0 responses
          41 views
          0 likes
          Last Post Deep42
          by Deep42
           
          Started by TheRealMorford, 03-05-2026, 06:15 PM
          0 responses
          46 views
          0 likes
          Last Post TheRealMorford  
          Working...
          X