ChartBars.Properties.PriceMarker.Background = new SolidColorBrush(Color.FromScRgb(1f, 1f - pmg, pmg, 0f));
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Changing the background color of PriceMarker dynamically causes the UI to freeze
Collapse
X
-
Changing the background color of PriceMarker dynamically causes the UI to freeze
Changing the background color of PriceMarker dynamically causes the UI to freeze.
The code above causes the UI to freeze. Is this a fixable bug?Code:Tags: None
-
Hello bkinvent,
Thank you for the post.
In this case, you are creating a new brush so you would also want to freeze the brush. This would also prevent the freeze of the UI you are experiencing.
If you have a set of a few colors you will reuse, i would suggest creating class level variables for your brushes and setting them up earlier in the script. That will simplify the uses later in your code.Code:Brush b = new SolidColorBrush(Color.FromScRgb(1f, 1f , 1f, 0f)); b.Freeze(); ChartBars.Properties.PriceMarker.Background = b;
We also have a page regarding working with brushes in nt8 here: https://ninjatrader.com/support/help...gcustombrushes
I look forward to being of further assistance.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
30 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
17 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
9 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
16 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
19 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment