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 judysamnt7, 03-13-2023, 09:11 AM
    4 responses
    59 views
    0 likes
    Last Post DynamicTest  
    Started by ScottWalsh, Today, 06:52 PM
    4 responses
    36 views
    0 likes
    Last Post ScottWalsh  
    Started by olisav57, Today, 07:39 PM
    0 responses
    7 views
    0 likes
    Last Post olisav57  
    Started by trilliantrader, Today, 03:01 PM
    2 responses
    21 views
    0 likes
    Last Post helpwanted  
    Started by cre8able, Today, 07:24 PM
    0 responses
    10 views
    0 likes
    Last Post cre8able  
    Working...
    X