//I want the label to show on this first plot but not the second. How? AddPlot(new Stroke(Brushes.Black), PlotStyle.Bar, "RelativeVolume"); AddPlot(new Stroke(Brushes.Red), PlotStyle.Bar, "VolumeIndicator");
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Hide Label for Second Plot
Collapse
X
-
Hide Label for Second Plot
How can I hide the label of just my second plot? For example:
Code:Tags: None
-
Hello swcooke,
Thank you for your reply.
AddLine() can be used for that purpose. Call AddLine in State.SetDefaults and it will add a line at the numeric value.
If you do need to use a plot, you would need to render the line using SharpDX in the OnRender method. More reading on that subject below:Code:if (State == State.SetDefaults) { ... AddLine(Brushes.Blue, 100, "MyPriceLine"); .... }
Please let me know if I can assist any further.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
35 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
13 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
19 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
22 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment