Hi,
I have a requirement to build a chart as the attached image. I am clueless where to start.I tried putting the img as background image but it would fill the whole chart. I want it to fil only part of the chart and then put a scattar chart layer on top.
Any suggestions / help is welcome.
-Anish
If you want to use a background image for the plotting area only, use the following:PaintElement pe = new PaintElement();pe.ElementType = PaintElementType.Image;pe.FillImage = myImage;//or pe.ImagePath = myImagePathString;chart.Axis.PE = pe;
Alternatively, you can use a heatmap layer to create a similar background that is data-driven.