Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

OnRender can't draw in panel

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    OnRender can't draw in panel

    The following sample:

    public class Sample1 : Indicator
    {
    protected override void OnStateChange()
    {
    if (State == State.SetDefaults)
    {
    Name =
    "Sample1";
    Calculate =
    Calculate.OnBarClose;
    IsOverlay =
    false;
    DrawOnPricePanel =
    false;
    IsAutoScale =
    true;
    IsSuspendedWhileInactive =
    true;
    }
    }
    protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
    {
    RenderTarget.DrawRectangle(
    new SharpDX.RectangleF(1, 1, 200, 200), Brushes.Black);
    }
    }

    does not draw in the panel as expected, could the support tell me what's wrong? The DrawRectangle is actually using the price panel coordinates and not the current panel coordinates.

    Thanks,
    dotnet
    Last edited by dotnet; 04-11-2016, 07:07 AM.

    #2
    Hello dotnet,

    Thank you for your post.

    I would recommend taking a look at the SampleCustomPlot indicator and how it handles the ChartPanel.X and ChartPanel.Y in order to draw the objects on the assigned panel. For information on ChartPanel please visit the following link: http://ninjatrader.com/support/helpG...chartpanel.htm

    Please let me know if you have any questions.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by kinfxhk, 07-13-2026, 10:18 AM
    0 responses
    24 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 09:50 AM
    0 responses
    14 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 07:21 AM
    0 responses
    20 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-11-2026, 02:11 AM
    0 responses
    19 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    135 views
    0 likes
    Last Post SalmaTrader  
    Working...
    X