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 burtoninlondon, Today, 12:38 AM
    0 responses
    10 views
    0 likes
    Last Post burtoninlondon  
    Started by AaronKoRn, Yesterday, 09:49 PM
    0 responses
    14 views
    0 likes
    Last Post AaronKoRn  
    Started by carnitron, Yesterday, 08:42 PM
    0 responses
    11 views
    0 likes
    Last Post carnitron  
    Started by strategist007, Yesterday, 07:51 PM
    0 responses
    14 views
    0 likes
    Last Post strategist007  
    Started by StockTrader88, 03-06-2021, 08:58 AM
    44 responses
    3,983 views
    3 likes
    Last Post jhudas88  
    Working...
    X