Of course, I thought of it !
But the data is coming from a database, and it's more difficult to change everything in it.
My chart is absolutely readable with floating-point minutes, but it would be a little more readable with the custom format I try to implement
Search found 21 matches
- Wed Apr 30, 2008 7:17 pm
- Forum: JFreeChart
- Topic: DateAxis : Convert minutes to mm:ss
- Replies: 8
- Views: 10560
- Wed Apr 30, 2008 4:45 pm
- Forum: JFreeChart
- Topic: DateAxis : Convert minutes to mm:ss
- Replies: 8
- Views: 10560
No, in fact I use
Code: Select all
CategoryPlot plot = (new CategoryPlot(data, domainAxis, rangeAxis, renderer));
- Wed Apr 30, 2008 3:05 pm
- Forum: JFreeChart
- Topic: DateAxis : Convert minutes to mm:ss
- Replies: 8
- Views: 10560
Another question :oops: I write a custom NumberFormat class, named MinuteSecondFormat as follows public class MinuteSecondFormat extends NumberFormat { private double minutes; private double secondes; public MinuteSecondFormat(double duree) { minutes = Math.floor(duree); secondes = Math.round((duree...
- Tue Apr 29, 2008 5:28 pm
- Forum: JFreeChart
- Topic: DateAxis : Convert minutes to mm:ss
- Replies: 8
- Views: 10560
- Tue Apr 29, 2008 9:01 am
- Forum: JFreeChart
- Topic: DateAxis : Convert minutes to mm:ss
- Replies: 8
- Views: 10560
DateAxis : Convert minutes to mm:ss
Hi everybody, I'm trying to display a chart with a time axis presenting durations in minutes and seconds ( "mm:ss" ). I got data from a dataset where durations are in minutes, with a double format (eg: 4.52), and I would like to convert these minutes to mm:ss for the display in the chart. I tried th...
- Thu Dec 13, 2007 10:19 pm
- Forum: JFreeChart
- Topic: Optimize execution time
- Replies: 4
- Views: 5253
- Thu Dec 13, 2007 2:27 pm
- Forum: JFreeChart
- Topic: Optimize execution time
- Replies: 4
- Views: 5253
- Thu Dec 13, 2007 1:47 pm
- Forum: JFreeChart
- Topic: Optimize execution time
- Replies: 4
- Views: 5253
Optimize execution time
Hi, I developed a small application connecting to a database and rendering graphics using JFreeChart. I was very surprised that the application is not faster on Linux (Debian) than on Windows (XP). So I was wondering what could be the reasons : is it because mathematical requests are faster on Linux...
- Thu Sep 27, 2007 9:56 pm
- Forum: JFreeChart
- Topic: TimeSeries Chart
- Replies: 6
- Views: 9813
Thanks for yor answer David ! The setVerticalTickLabels functions very well ! It makes my chart readable now ! Concerning the overlapping lables problem, I have not specified any fixed tick size ... or at least it was not deliberate :lol: Could you just tell me how I could revert to the default sizi...
- Wed Sep 26, 2007 9:08 am
- Forum: JFreeChart
- Topic: TimeSeries Chart
- Replies: 6
- Views: 9813
- Mon Sep 17, 2007 7:02 pm
- Forum: JFreeChart
- Topic: TimeSeries Chart
- Replies: 6
- Views: 9813
Thanks for your answer.
Unfortunately I still have the problem
I found this old post
http://www.jfree.org/phpBB2/viewtopic.p ... 34df545000
I don't know it this feature was implemented in the meantime.... if somebody know, it would really help me !
Unfortunately I still have the problem

I found this old post
http://www.jfree.org/phpBB2/viewtopic.p ... 34df545000
I don't know it this feature was implemented in the meantime.... if somebody know, it would really help me !
- Mon Sep 17, 2007 1:18 pm
- Forum: JFreeChart
- Topic: TimeSeries Chart
- Replies: 6
- Views: 9813
- Wed Sep 12, 2007 12:08 pm
- Forum: JFreeChart
- Topic: Generating PDF
- Replies: 2
- Views: 4348
- Wed Sep 12, 2007 11:07 am
- Forum: JFreeChart
- Topic: Generating PDF
- Replies: 2
- Views: 4348
Generating PDF
Dear all, I have integrated some charts in a JSP file with DisplayChart servlet. This works fine. Now I would like to convert these charts into PDF. I have created a servlet to do this. My problem is that I would like to indicate to this servlet to use the charts previously generated for the display...
- Sat Sep 08, 2007 5:15 pm
- Forum: JFreeChart
- Topic: TimeSeries Chart
- Replies: 6
- Views: 9813
TimeSeries Chart
Hi everybody !
I am trying to rotate the labels on a timeseries chart ? Is there a similar function to SetCategoryLabelPositions ?
Many thanks in advance !!
Axel
I am trying to rotate the labels on a timeseries chart ? Is there a similar function to SetCategoryLabelPositions ?
Many thanks in advance !!
Axel