yunjianwu / achartengine

Automatically exported from code.google.com/p/achartengine
0 stars 0 forks source link

Annotations are not a the correct position, if two annotations share the same x-value #326

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I am using an SVN version from about a week ago, including the annotation style 
patches.

The following code doesn't show annotations where they should appear, but the 
those annotations, who share the same x value, are displayed on top of each 
other.

series.add(4, 4);
series.addAnnotation("Test1", 4, 4);
series.add(4, 5);
series.addAnnotation("Test2", 4, 5);
series.add(5, 6);
series.addAnnotation("Test3", 5, 6);

"Test1" appears on top of "Test2" and not at (4,4).

Original issue reported on code.google.com by janoli...@gmail.com on 7 Jul 2013 at 1:35

GoogleCodeExporter commented 9 years ago

Original comment by dandrome...@gmail.com on 1 Nov 2013 at 8:12