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
1735
XamChart equivalent of UltraChart support to display a custom image?
posted

I am looking at some of our legacy applications. The Winforms UltraChart has a feature that allow users provide a Bitmap for the Chart to display.

You implement the ILayer interface and add them to the UltraChart Layers list.

Then the UltraChart during the Paint event calls the FillSceneGraph method of its layers passing an SceneGraph object.

Then the Implementation of the ILayer can create a ChartImage and add it to the given SceneGraph, from a System.Drawing.Image (which can be a Bitmap) and a rectangle representing the bounds to be plotted.

This allowed to fully customize what the chart displays using a Bitmap.

Is there an equivalent of this mechanism where I could use an Image in the XamChart?

Thank you!