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 traderqz, Today, 09:44 AM
    2 responses
    4 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by stafe, 04-15-2024, 08:34 PM
    8 responses
    40 views
    0 likes
    Last Post stafe
    by stafe
     
    Started by rocketman7, Today, 09:41 AM
    2 responses
    6 views
    0 likes
    Last Post rocketman7  
    Started by rocketman7, Today, 02:12 AM
    7 responses
    31 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by guillembm, Yesterday, 11:25 AM
    3 responses
    16 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Working...
    X