Search found 14 matches
- Mon Aug 11, 2008 11:49 pm
- Forum: JFreeChart
- Topic: Annotations - placement?
- Replies: 1
- Views: 2858
- Sun Jun 29, 2008 6:50 pm
- Forum: JFreeChart
- Topic: JFreeChart print job size.
- Replies: 8
- Views: 13004
- Sun Jun 29, 2008 12:06 am
- Forum: JFreeChart
- Topic: JFreeChart print job size.
- Replies: 8
- Views: 13004
- Sat Jun 28, 2008 11:56 pm
- Forum: JFreeChart
- Topic: Color Ranges in Area Charts
- Replies: 4
- Views: 4974
- Fri Jun 27, 2008 12:41 am
- Forum: JFreeChart
- Topic: Adding chart into JPanel
- Replies: 4
- Views: 6049
Try adding like this GroupLayout layout = new GroupLayout(chartPanel); chartPanel.setLayout(layout); layout.setAutocreateGaps(true); layout.setAutocreateContainerGaps(true); layout.setHorizontalGroup((layout.createSequentialGroup()).add(jpanel)); layout.setVerticalGroup(layout.createSequentialGroup(...
- Thu Jun 26, 2008 10:29 pm
- Forum: JFreeChart
- Topic: setEnabled(false)
- Replies: 2
- Views: 3491
- Thu Jun 26, 2008 10:18 pm
- Forum: JFreeChart
- Topic: Colors for multiple series in TimeSeriesCollection
- Replies: 4
- Views: 7005
I'm not sure whether I understand you well...but I recently get through some coloring issues... you may check this thread, may be it helps
http://www.jfree.org/phpBB2/viewtopic.p ... ght=#70429
http://www.jfree.org/phpBB2/viewtopic.p ... ght=#70429
- Thu Jun 26, 2008 8:59 pm
- Forum: JFreeChart
- Topic: Does XYBoxAnnotation tooltip hides other tooltips?
- Replies: 5
- Views: 5723
I could manage with
Code: Select all
renderer.setBaseToolTipGenerator(null);
- Thu Jun 26, 2008 8:46 pm
- Forum: JFreeChart
- Topic: Does XYBoxAnnotation tooltip hides other tooltips?
- Replies: 5
- Views: 5723
I think it wouldnt be *impossible* to show both :roll: Now since the PNG shows both tool tips we decided to keep that and to switch off all the tooltips in Applet mode. It would've been nice to have a method to do that in JFreeChart, (switch on/off tooltips) now it seems it can be done only at the t...
- Wed Jun 25, 2008 10:24 pm
- Forum: JFreeChart
- Topic: Does XYBoxAnnotation tooltip hides other tooltips?
- Replies: 5
- Views: 5723
- Wed Jun 25, 2008 1:14 am
- Forum: JFreeChart
- Topic: Does XYBoxAnnotation tooltip hides other tooltips?
- Replies: 5
- Views: 5723
Does XYBoxAnnotation tooltip hides other tooltips?
Hi there I have a timeseries chart with tooltips and on an applet the tooltip works only for those datapoints which are not within XYBoxAnnotation. It doesnt show the annotation tooltip too. I'm using XYLineAndShapeRenderer. On the PNG output annotation tooltips shows but not the tooltip of the data...
- Fri Jun 13, 2008 9:05 pm
- Forum: JFreeChart
- Topic: How to set color of bars in CategoryDataset intact?
- Replies: 2
- Views: 4487
What i was looking for is how to get the series out of dataset and couldnt find any method for that. Apparently dataset.getRowCount() returns the number of series and dataset.getRowKey(0) will return the name of the series; renderer.setSeriesPaint(row, Paint); that solved the issue without subclassing
- Fri Jun 13, 2008 5:14 pm
- Forum: JFreeChart
- Topic: How to set color of bars in CategoryDataset intact?
- Replies: 2
- Views: 4487
- Fri Jun 13, 2008 1:08 am
- Forum: JFreeChart
- Topic: How to set color of bars in CategoryDataset intact?
- Replies: 2
- Views: 4487
How to set color of bars in CategoryDataset intact?
I have searched this forum and got some clues how to do this but still i couldnt make it :roll: . Here is the issue; I'm creating the dataset like this DefaultCategoryDataset dataset = new DefaultCategoryDataset(); dataset.addValue(value, Name, "1 to 2 second bin"); //there will be several bins of v...