Search found 9 matches

by dimdim
Thu Jun 23, 2005 9:56 pm
Forum: JFreeChart
Topic: Item labels at the foreground?
Replies: 1
Views: 2592

next...

info : it's talks about item label on the bars, when i build a barChart
by dimdim
Thu Jun 23, 2005 8:26 pm
Forum: JFreeChart
Topic: Item labels at the foreground?
Replies: 1
Views: 2592

Item labels at the foreground?

Hi,

It is possible to put the labels at the foreground? I build a barChar and the labels are often cut when the bars are too small.

Somebody can help me?

Thanks a lot.

Dim
by dimdim
Fri Jun 17, 2005 2:55 pm
Forum: JFreeChart
Topic: Help me urgent !!!
Replies: 1
Views: 3103

rafa, eres espagnol?, no? para tu problema, trata de hacer eso (anadir el labelFormat): StandardCategoryItemLabelGenerator labelGenerator = new StandardCategoryItemLabelGenerator("{2}",NumberFormat.getInstance()); o cambia de ChartFactory, no sé lo que quierres hacer exactamente pero normalement, po...
by dimdim
Wed Jun 08, 2005 12:12 pm
Forum: JFreeChart
Topic: display specific values on X-axis
Replies: 0
Views: 1717

display specific values on X-axis

Hi,

I try to display on X-axis, the dates of my histogram (build with
createXYStepAreaChart) and only it.

it's possible??

Thanks a lot.

Dim
by dimdim
Wed Jun 08, 2005 12:02 pm
Forum: JFreeChart
Topic: Bar chart
Replies: 5
Views: 9235

I think not, but I am interested.

Dim
by dimdim
Wed Jun 08, 2005 8:13 am
Forum: JFreeChart
Topic: use StandardXYItemLabelGenerator
Replies: 5
Views: 6303

I have : public JFreeChart buidBarChart2(Vector dateStartList, Vector dateEndList, Vector dataGraphicsList) { XYSeries series = new XYSeries("plan limite"); for(int i=0;i<=dateStartList.size();i++) { ... series.add(x,y); } XYDataset xyDataset = new XYSeriesCollection(series); JFreeChart barChart = C...
by dimdim
Mon Jun 06, 2005 10:45 pm
Forum: JFreeChart
Topic: use StandardXYItemLabelGenerator
Replies: 5
Views: 6303

in fact, it's happen nothing.

the labels are not displayed. whereas I also put:

Code: Select all

renderer.setItemLabelVisible(true);

(more or less, I do not have the code under the eyes)

Thank you for your assistance.

Dim
by dimdim
Mon Jun 06, 2005 7:54 pm
Forum: JFreeChart
Topic: use StandardXYItemLabelGenerator
Replies: 5
Views: 6303

for display item label with category plot, I did that: CategoryItemLabelGenerator generator = new StandardCategoryItemLabelGenerator( "{2}", NumberFormat.getInstance()); and with XYplot, I did: XYItemLabelGenerator generator = new StandardXYItemLabelGenerator( "{2}", NumberFormat.getNumberInstance()...
by dimdim
Mon Jun 06, 2005 8:38 am
Forum: JFreeChart
Topic: use StandardXYItemLabelGenerator
Replies: 5
Views: 6303

use StandardXYItemLabelGenerator

Hi,

I need to display item label on bars (XYPlot). I try to use "StandardXYItemLabelGenerator", but what can i put like argument?

How can I display that?

Dim