Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

BRUSHES -> RGB specific example

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

    BRUSHES -> RGB specific example

    Hello. I have a specific code example which I need to change. It uses the color "LightSkyBlue" and I need to change that into a specific RGB code. What I need is the code not an explanation, because I am not a good programmer.

    Here is the original code:

    RenderTarget.FillRectangle(new RectangleF(x,y, (float)(chartControl.BarWidth * 2), (float)(rectangleOffset)), Brushes.LightSkyBlue.ToDxBrush(RenderTarget));


    The goal is to change LightSkyBlue into RGB(100,50,245)

    Hope somebody can help.

    #2
    Hello CYDFSN23,

    Thanks for opening the thread and welcome to our support forums!

    What you are attempting to do is replace a predefined SolidColorBrush with your own custom SolidColorBrush.

    You could create your own custom SolidColorBrush and use that instead of Brushes.LightSkyBlue.

    Here is an example:

    Code:
    Brush myBrush = new SolidColorBrush(Color.FromRgb(100, 50, 245));
    Please let me know if you have any additional questions.
    JimNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Kaledus, Today, 01:29 PM
    1 response
    6 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by frankthearm, Yesterday, 09:08 AM
    13 responses
    45 views
    0 likes
    Last Post frankthearm  
    Started by PaulMohn, Today, 12:36 PM
    2 responses
    16 views
    0 likes
    Last Post PaulMohn  
    Started by Conceptzx, 10-11-2022, 06:38 AM
    2 responses
    55 views
    0 likes
    Last Post PhillT
    by PhillT
     
    Started by yertle, Yesterday, 08:38 AM
    8 responses
    37 views
    0 likes
    Last Post ryjoga
    by ryjoga
     
    Working...
    X