Search found 27 matches

by doudou
Tue Oct 02, 2007 4:54 pm
Forum: JFreeChart
Topic: still another question about step charts
Replies: 1
Views: 2478

up... :?
by doudou
Fri Sep 28, 2007 11:39 am
Forum: JFreeChart
Topic: Text get cut
Replies: 10
Views: 16110

Why don't you just change the place of the marker?
You force the chart window to be 0 to 8 vertically, and then you place markers at 0 (so centered on 0 axis) and on 8 (so centered on 8 axis)

2 solutions: change axis range or move markers...
by doudou
Fri Sep 28, 2007 11:34 am
Forum: JFreeChart
Topic: still another question about step charts
Replies: 1
Views: 2478

still another question about step charts

Dear all, Here is a short, but maybe tough, issue that I have: I am useing stepped charts, and in some cases, I would need to have a step drawned before the first point of my timeseries. Here is an example: I have the following time series: 1:00 ; 12 2:00 ; 10 3:00 ; 10 this creates steps from 1:00 ...
by doudou
Thu Jun 28, 2007 1:42 pm
Forum: JFreeChart
Topic: stepped chart with the step before the point
Replies: 2
Views: 3373

Thank you for the answer, that's what I was suspecting.
For the implementation, I found someone that posted this suggestion, which I'm going to try:
http://www.jfree.org/phpBB2/viewtopic.p ... light=step

Indeed it is sometimes necessary to show the steps the other way than the usual...
by doudou
Tue Jun 26, 2007 2:48 pm
Forum: JFreeChart
Topic: stepped chart with the step before the point
Replies: 2
Views: 3373

stepped chart with the step before the point

Dear all, Here is my issue: I need to draw a stepped chart, but with the step being drawn before the point defined. For example if I have the following serie: (1,100),(2,50),(3,70),... I would need to have a step at "100" between 0 and 1, a step at 50 between 1 and 2, etc... I did not find a way to ...
by doudou
Thu Apr 27, 2006 8:51 am
Forum: JFreeChart
Topic: TimeSeries Question
Replies: 9
Views: 9978

you should have a look at financial charts demos.
by doudou
Wed Apr 26, 2006 4:54 pm
Forum: JFreeChart
Topic: JFreeChart Evaluation
Replies: 10
Views: 13060

Sorry I edited my post above. Added some data. I agree, I think that with all things considered Java should actually give us a performance boost. I am just a little unsure about how efficient JFreeChart's dynamic data is. I assume that it is quite efficient as it seems to be a solution selected by ...
by doudou
Wed Apr 26, 2006 4:52 pm
Forum: JFreeChart
Topic: Il y a des français dans le coin ?
Replies: 42
Views: 91650

en meme temps, vu le peu d'activite sur ce forum, si on commence a faire la tour de babel je crains le pire

(eh oui, j'ai change d'avis :P )
by doudou
Wed Apr 26, 2006 4:49 pm
Forum: JFreeChart
Topic: XYLinechart -coloring for lines
Replies: 1
Views: 2683

What I understand is that you wand to set the color for the whole serie... I am right? In that case this is a method of the renderer. example: XYItemRenderer renderer = plot.getRenderer(); renderer.setSeriesPaint(0,Color.GREEN); renderer.setSeriesPaint(1,Color.YELLOW); where 0 and 1 are the index of...
by doudou
Wed Apr 26, 2006 10:56 am
Forum: JFreeChart
Topic: how to show pointed values onto the chart
Replies: 3
Views: 3968

Do you mean something like CrosshairDemo2.java, but with the values displayed directly on the chart rather than in a table below the chart? That would need some custom code - either an new annotation type or a direct modification to the plot drawing code. Exactly! Could you please give me direction...
by doudou
Wed Apr 26, 2006 10:08 am
Forum: JFreeChart
Topic: Labels
Replies: 6
Views: 8298

hmmm it looks like we're looking for the same thing.
will keep you informed if I find...
by doudou
Wed Apr 26, 2006 10:07 am
Forum: JFreeChart
Topic: Muliple Datasets with Different X Values.
Replies: 2
Views: 3389

To summarise the answer is yes: you can have completely different X values for each serie of a dataset.

However, the result might not be nice if X values are too far from one dataset to the other...

consider using many different charts in that case.
by doudou
Wed Apr 26, 2006 9:56 am
Forum: JFreeChart
Topic: how to show pointed values onto the chart
Replies: 3
Views: 3968

I actually would like it to show just like a tooltip, but permanently and for all curves at the same time
by doudou
Wed Apr 26, 2006 9:53 am
Forum: JFreeChart
Topic: how to show pointed values onto the chart
Replies: 3
Views: 3968

how to show pointed values onto the chart

hello all,

Here is my issue:

I have a chart with multiple curves.
I added a vertical crosshair on it, so that we can point multiple points at the same time.

How to print directly on the chart all points that have been designed? I'm pretty sure it's possible...

Thank you very much for your help.
by doudou
Tue Apr 11, 2006 11:08 am
Forum: JFreeChart
Topic: Setting horizontal axis value
Replies: 2
Views: 3242

there should be a property of the axis to set this.
Make a search on "tick units" and ValueAxis on the forum, you should find everything you need.

Sorry, I'm not a guru yet so I can only show the path :oops: