how to create graphs to map with a graph image in gif file:
I am having scanned graphs in gif file & trying to plot and/or draw lines or grids on top of it.
how would one can accomplish in xamchart, can we set the graph background as this gif (or png or one that would work ) file that can be scaled & zoomed in & out as well plot values in the xamchart?
thanks
vairam
you can set a background image like this... and the properties of the ImageBrush will determine how the image itself is displayed (for example, use the Transform property to scale it if desired)
<igCA:XamChart>
<igCA:XamChart.Background>
<ImageBrush ImageSource="test.gif" />
</igCA:XamChart.Background>
</igCA:XamChart>