Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
OverviewPlusDetailPane with Custom Series
posted

Hello,

I created a custom series to enable ItemToolTipLayer and CrosshairLayer on my series. But now i would like to display in the OverviewPlusDetailPane, my series.

How can do that ? Could you provide me a simple example?

I know that i need to override this method:

 http://help.infragistics.com/doc/WPF/2014.1/CLR4.0/?page=InfragisticsWPF4.Controls.Charts.XamDataChart.v14.1~Infragistics.Controls.Charts.Series~RenderThumbnail.html

But it doesn't works:

protected override void RenderThumbnail(Rect viewportRect, RenderSurface surface)
{

base.RenderThumbnail(viewportRect, surface);

... //render my serie.

surface.Surface.Children.Add(contourShape);

}

Thank you for your help!