Is there a quick way to draw a figure, say rectangle, at the bottom of the visible chart window? ChartScale MaxValue and MinValue don't seem to be available outside of OnRender. Please advise. Thank you.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Drawing at Bottom/Top of Chart Window
Collapse
X
-
Drawing at Bottom/Top of Chart Window
Hi,
Is there a quick way to draw a figure, say rectangle, at the bottom of the visible chart window? ChartScale MaxValue and MinValue don't seem to be available outside of OnRender. Please advise. Thank you.Last edited by Zeos6; 09-20-2017, 08:48 AM.Tags: None
-
Hello Zeos6.
Thank you for the post.
Please see section 1.4 - Rendering Custom Shapes in 'SampleCustomRender.cs' in a NinjaScript editor.
Here is the code used to print a large rectangle:
You can see at the beginning of OnRender(), there are two SharpDX vectors, and they are set by accessing the X/Y coordinates of the ChartPanel object, which is global to your script.Code:// 1.4 - Rendering Custom Shapes SharpDX.RectangleF rect = new SharpDX.RectangleF(startPoint.X, startPoint.Y, width, height); RenderTarget.FillRectangle(rect, areaBrushDx); RenderTarget.DrawRectangle(rect, customDXBrush, 2);
You can compute the bottom left of this panel from the X, Y coordinates.Code:// 1.1 - SharpDX Vectors and Charting RenderTarget Coordinates SharpDX.Vector2 startPoint; SharpDX.Vector2 endPoint; startPoint = new SharpDX.Vector2(ChartPanel.X, ChartPanel.Y); endPoint = new SharpDX.Vector2(ChartPanel.X + ChartPanel.W, ChartPanel.Y + ChartPanel.H);
Here is a link to the help guide on ChartPanel objects:
Here is a link to the help guide on SharpDX DrawRectangle():
If questions come up or if we may be of any further assistance, please let us know.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
571 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
330 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 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
548 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
548 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment