Search found 32 matches

by DopeForADay
Wed Aug 23, 2006 8:49 am
Forum: JFreeChart
Topic: DateAxis & Zoom
Replies: 0
Views: 2070

DateAxis & Zoom

Hello, I'm developing an application in which I have Charts representig data over time, the common date intervals are weeks. What I would like to achieve is that when the Charts are initially shown, there are only the first 16 weeks that are shown. So basically, I would like to zoom on those first 1...
by DopeForADay
Tue Jul 18, 2006 10:53 am
Forum: JFreeChart
Topic: TimeSeries & mixed Chart (Lines & Bars)
Replies: 4
Views: 5245

Thank you for your help. Seems like my colleague managed to solve the problem by writing a custom renderer.
by DopeForADay
Tue Jul 18, 2006 6:59 am
Forum: JFreeChart
Topic: TimeSeries & mixed Chart (Lines & Bars)
Replies: 4
Views: 5245

Does nobody know? Or is something unclear? Please help me :cry:
by DopeForADay
Thu Jun 29, 2006 9:22 am
Forum: JFreeChart
Topic: TimeSeries & mixed Chart (Lines & Bars)
Replies: 4
Views: 5245

TimeSeries & mixed Chart (Lines & Bars)

I have a Graph which shows time-based data usind a XYPlot. I use a TimeSeriesCollection with one TimeSeries for each datarow I have to display because of my intern metadata definition and because I implemented the possibility to make single series (un-)visible using checkboxes. So each Collection ha...
by DopeForADay
Fri Aug 13, 2004 12:20 pm
Forum: JFreeChart
Topic: Chart looks different when running as WebApp
Replies: 1
Views: 2241

Chart looks different when running as WebApp

Hi there, I wrote a little application to visualize some data and put the whole thing into a jar file. My chart is a combined chart that contains XYItemRederered TimeSeries and ClusteredXYBarRendered data.Now when I exceute the jar file normally, everything is shown as I want it to look like: the ba...
by DopeForADay
Thu Aug 12, 2004 3:52 pm
Forum: JFreeChart
Topic: can't show two or more line---timeseries
Replies: 1
Views: 2193

You have to create a TimeSeries for each 'line' you want to show and add it to your TimeSeriesCollection.
by DopeForADay
Thu Jul 29, 2004 2:50 pm
Forum: JFreeChart
Topic: NullPointerException when trying to overlay
Replies: 2
Views: 3450

Thank you very much, I didn't know I had to do that and read over it looking at the demo code. Sorry.
by DopeForADay
Thu Jul 29, 2004 2:33 pm
Forum: JFreeChart
Topic: NullPointerException when trying to overlay
Replies: 2
Views: 3450

NullPointerException when trying to overlay

Hello, I'm trying to make a chart that contains a XYPlot using TimeSeriesCollections as datasets. Now I wanted to try to set one renderer of the Collections to StandardXYItemRenderer and the other one to XYBarRenderer(). So I did that, compiled it, tried to run it and I've got a NullPointerException...
by DopeForADay
Tue Jul 20, 2004 11:54 am
Forum: JFreeChart
Topic: Problems setting size of the Chart
Replies: 3
Views: 3997

I would suggest to use the BoxLayout for that. Have you tried to repaint the panel that contains the chartPanels?
by DopeForADay
Tue Jul 20, 2004 11:52 am
Forum: JFreeChart
Topic: Question about use series
Replies: 4
Views: 4440

What about removing the series you want to hide, save it in a TimeSeries variable (or a Vector if you have more than one) and then just adding it again when you want it to be shown? then, you'll only have to repaint the chart.
by DopeForADay
Wed Jul 14, 2004 7:15 am
Forum: JFreeChart
Topic: IndexOutOfBounds
Replies: 2
Views: 4188

It would be easier to tell if you showed some code, but I think it's you messing something up when you do something with you dataset.
by DopeForADay
Wed Jul 07, 2004 11:05 am
Forum: JFreeChart
Topic: German ÄÖÜ
Replies: 3
Views: 3474

Hello,


try this:

for Ä: '\u00C4'
for Ü: '\u00DC'
for Ö: '\u00D6'
for ä: '\u00E4'
for ö: '\u00F6'
for ü: '\u00FC'

I hope this works ;)
by DopeForADay
Wed Jul 07, 2004 10:34 am
Forum: JFreeChart
Topic: Need a Sample code which generates a simple Line Chart
Replies: 1
Views: 2798

There are plenty of example programs (with code) in the zip/tar.gz file you downloaded. Look in the jfreechart file in path: /src/org/jfree/chart/demo. I think you'll find what you need there.
by DopeForADay
Wed Jun 30, 2004 7:08 am
Forum: JFreeChart
Topic: Reduce white space associated with legends
Replies: 2
Views: 6201

Try using the setInnerGap() and setOuterGap() methods of the StandardLegend class.
by DopeForADay
Wed Jun 30, 2004 7:04 am
Forum: JFreeChart
Topic: Help in changing tooltips texts
Replies: 3
Views: 6998

Get the renderer you want to use and then use the setToolTipGenerator() method.