Search found 7 matches

by boulayp
Tue Mar 16, 2010 11:23 am
Forum: JFreeChart
Topic: Stacked Bar Chart Labels Position and Value Marker Problem
Replies: 15
Views: 35103

Re: Stacked Bar Chart Labels Position and Value Marker Problem

works great
thank you !!!! ;o)
Image
by boulayp
Sat Jan 17, 2009 11:21 am
Forum: JFreeChart
Topic: TimeSeries Multiple Axis Annotation
Replies: 7
Views: 12327

Image
by boulayp
Sat Jan 17, 2009 10:48 am
Forum: JFreeChart
Topic: TimeSeries Multiple Axis Annotation
Replies: 7
Views: 12327

annotation - final code

public static void testAddAnnotation( String text, XYPlot plot , TimeSeriesCollection ds, Color color, int rindex, int index ) { final CircleDrawer cd = new CircleDrawer(Color.red, new BasicStroke(1.0f), null); final XYAnnotation bestBid = new XYDrawableAnnotation(ds.getStartX(0,index).doubleValue()...
by boulayp
Sat Jan 17, 2009 9:47 am
Forum: JFreeChart
Topic: TimeSeries Multiple Axis Annotation
Replies: 7
Views: 12327

annotation

simple bug in my prg
found it and everything works fine !!!
by boulayp
Sat Jan 17, 2009 9:42 am
Forum: JFreeChart
Topic: TimeSeries Multiple Axis Annotation
Replies: 7
Views: 12327

annotations - found a fix

This one works fine !!!! using 2 as index for 2nd renderer ......... though 0 would be the index to the 1st renderer and 1 to the 2nd did I miss something pat /************/ final CircleDrawer cd2 = new CircleDrawer(Color.red, new BasicStroke(1.0f), null); final XYAnnotation bestBid2 = new XYDrawabl...
by boulayp
Sat Jan 17, 2009 9:27 am
Forum: JFreeChart
Topic: TimeSeries Multiple Axis Annotation
Replies: 7
Views: 12327

annotation

here is my code annotation is ok on first dataset but nothing on 2nd dataset /************/ final CircleDrawer cd = new CircleDrawer(Color.red, new BasicStroke(1.0f), null); final XYAnnotation bestBid = new XYDrawableAnnotation(((TimeSeriesCollection)xydataset).getStartX(0,50).doubleValue(), ((TimeS...
by boulayp
Thu Jan 15, 2009 7:36 pm
Forum: JFreeChart
Topic: TimeSeries Multiple Axis Annotation
Replies: 7
Views: 12327

TimeSeries Multiple Axis Annotation

I can not manage to have annotation working on Multiple Axis Time Series


It works on primary Axis using plot.addAnnotation
but does not using renderer for secondary Axis
thank you for reading