Search found 9 matches
- Thu Aug 10, 2006 11:49 am
- Forum: JFreeChart
- Topic: Help with Time Series Chart
- Replies: 3
- Views: 4557
solution
Ok I have the solution based on the other post. The code for the DurationFormat is: package ciscoVoip; import java.text.FieldPosition; import java.text.Format; import java.text.NumberFormat; import java.text.ParsePosition; public class DurationFormat extends NumberFormat { public DurationFormat() { ...
- Wed Aug 09, 2006 6:14 pm
- Forum: JFreeChart
- Topic: Help with Time Series Chart
- Replies: 3
- Views: 4557
Tks
tks for your help. When I searched the forum I didn't use the key word duration.
Could you get me the code for your class DurationFormat, or just the most important bits of code. You would save the trouble of doing that.
Tks a lot again.
bye
Could you get me the code for your class DurationFormat, or just the most important bits of code. You would save the trouble of doing that.
Tks a lot again.
bye
- Tue Aug 08, 2006 7:56 pm
- Forum: JFreeChart
- Topic: Help with Time Series Chart
- Replies: 3
- Views: 4557
Help with Time Series Chart
If you look to my test image, you’ll understand what I want to do. test Image For each day I want to see the number of calls made and the total duration for all calls. The chart is exactly what I wanted, there is only one problem that really needs your help. If the total duration of calls is more th...
- Wed Aug 02, 2006 11:01 am
- Forum: JFreeChart
- Topic: Help...
- Replies: 7
- Views: 7155
sorry
Attention this is closed all my questions are anwsered
Thank you for all
Thank you for all
- Mon Jul 31, 2006 9:43 am
- Forum: JFreeChart
- Topic: Help...
- Replies: 7
- Views: 7155
tks
Tks, that works, for the time problem. Another problem is the autoRange. I would like it to rescale the axis to ensure that all data is visible, but I wanted 00:00:00 to appear in the axis also. I Tried to use setRange but I have to define the lower and the upper bound. I just want to define the low...
- Fri Jul 28, 2006 11:08 pm
- Forum: JFreeChart
- Topic: Help...
- Replies: 7
- Views: 7155
anwser
Yes that's it... have to find out how to get that information.
Still having toruble with the autoRange that I explained in my last post, please HELP
Still having toruble with the autoRange that I explained in my last post, please HELP

- Fri Jul 28, 2006 3:59 pm
- Forum: JFreeChart
- Topic: Brazilia portuguese translate
- Replies: 1
- Views: 1846
Tens a certeza?
Como é que conseguiste traduzir com esse inglês tão mau?!?!?
não leves a mal.
Translation:
How could you translate it with that bad English? lol

Translation:
How could you translate it with that bad English? lol
- Fri Jul 28, 2006 3:56 pm
- Forum: JFreeChart
- Topic: Help...
- Replies: 7
- Views: 7155
If you use a TimeSeriesChart with TimeSeriesCollection and if values of TimeSeries are in seconds, you can use a DateAxis for range axis : DateAxis dateAxisRange = new DateAxis("Time"); dateAxisRange.setDateFormatOverride(new SimpleDateFormat("HH:mm:ss")) ; xyplot.setRangeAxis(dateAxisRange ); Than...
- Thu Jul 27, 2006 6:41 pm
- Forum: JFreeChart
- Topic: Help...
- Replies: 7
- Views: 7155
Help...
I'm trying to make a chart with “time spent on phone by month”. I’m doing some work with voip phones, and I wanted a chart were the administration could see how much time a user spend on the phone on a period of a couple of month’s. The time data is in seconds and I would like to be on the chart in ...