Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
filling in area in histogram
Collapse
X
-
Hello ballboy11,
Thank you for the post.
I wanted to check, what part of the image are you referring to filling in? Are you referring to the Red vertical bars and making them wider to fix the open space? Can you provide more detail on what needs to be filled here?
Draw.Region would be good for filling the area between a Plot and a Plot or a Plot and a Double, if what you are showing can be encompassed by that you should be able to use a region. If a region will not work for the area, you can still use the OnRender override to do more custom drawing. Depending on what needs to be filled, one of these routes should work for the goal.
I look forward to being of further assistance.
-
Hello kiss987,
Thank you for the reply and updated image.
If you are just trying to shade the area between the bottom line and the top of your bars, you could use a region for that. You would need to supply the bottom value and the Plot to Draw.Region. Very likely you would need to use the following syntax:
Your top plot goes where PlotNameHere is and then you would replace the second 0 with your bottom value (if other than 0).Code:Draw.Region(this, "tag1", CurrentBar, 0, PlotNameHere, 0, null, Brushes.Blue, 50);
If your bottom value is another plot, you could replace the 0 with the plot name, Draw.Region supports both Plot and Value or Plot and Plot drawing.
I look forward to being of further assistance.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
650 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
370 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
109 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
574 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
577 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment