Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Graphics Layer
Collapse
X
-
Hello chuckt101,
You can adjust the Z order of objects by first clicking on it to select it, then holding down shift and adjusting with your mouse scroll wheel. The is unfortunately no support for setting the Z order programatically.Last edited by NinjaTrader_RyanM1; 03-30-2011, 03:17 PM.Ryan M.NinjaTrader Customer Service
-
I 100% held the control key. I tried one, the other, and both. I clicked the price bars, the draw objects, and the graphics objects. Nothing works.Originally posted by NinjaTrader_Bertrand View PostIf the chart scrolls instead then you likely did not hold control pressed while checking the ZOrders available. If you have trouble selecting your custom object, try selecting the price bars instead and then moving them back in ZOrder...
Thanks
Comment
-
There is a property you can set for chart. Right click > Properties > Set Allow the Selection or drag/drop of chart series > True
Objects placed with Draw() commands can be selected and z order adjusted with the technique indicated earlier.
It may help to use this snippet which unlocks all code placed Draw objects.
foreach (IDrawObject draw in DrawObjects)
{
// Unlocks all draw objects for manual manipulation on the chart
draw.Locked = false;
}Ryan M.NinjaTrader Customer Service
Comment
-
Well, that is the problem. You have to select the object, then hold the SHIFT key and use the scrollwheel of the mouse. If fact, as soon as you press the shift key, you will see the current ZOrder of the selected draw object.Originally posted by chuckt101 View PostI 100% held the control key. I tried one, the other, and both. I clicked the price bars, the draw objects, and the graphics objects. Nothing works.
Thanks
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
602 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
347 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 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
559 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
558 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment