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 futtrader, 04-21-2024, 01:50 AM
    4 responses
    41 views
    0 likes
    Last Post futtrader  
    Started by Option Whisperer, Today, 09:55 AM
    1 response
    11 views
    0 likes
    Last Post bltdavid  
    Started by port119, Today, 02:43 PM
    0 responses
    3 views
    0 likes
    Last Post port119
    by port119
     
    Started by Philippe56140, Today, 02:35 PM
    0 responses
    4 views
    0 likes
    Last Post Philippe56140  
    Started by 00nevest, Today, 02:27 PM
    0 responses
    2 views
    0 likes
    Last Post 00nevest  
    Working...
    X