Hi Michael,
From your description, I assume you are developing a desktop application (as opposed to a web application). You can load the image file into a DrawArea object, then use Layer.setDataSymbol3. The DrawArea object can be reused when the chart is updated. The exact code depends on your programming language. An example is:
DrawArea d = new DrawArea();
d.load("/path/to/my/image/file.png");
layer.setDataSymbol3(d);
Hope this can help.
Regards
Peter Kwan |