Hello,
I noticed ContourPlot can still not display any XY annotations. I posted a patch for that a long while ago (for version 0.9.15).
Is it possible to put this improvement into the next release? i think it should be in there before 1.0 because it provides all XY plots with XYAnnotations.
it's pretty simple to fix, too: just replace a reference to XYPlot with an interface, and fix up the rest:
1) make XYAnnotation and subclasses' draw method take an interface XYAnnotatable instead of XYPlot
2) make the XYPlot menthods XYAnnotation is using part of the interface
3) implement the interface in ContourPlot (no need to subclass XYPlot) - and any other plot that wants annotations.
4) fix up some methods
5) comment the annotation code in ContourPlot back in
done.
ps: i could post another patch no problem.