Search found 29 matches
- Wed Mar 16, 2005 7:25 am
- Forum: JFreeChart
- Topic: HOW TO USE jfree chart library
- Replies: 1
- Views: 2712
- Thu Feb 17, 2005 9:16 am
- Forum: JFreeChart - Stockmarket
- Topic: How do I mix CandleChart with a Bar Chart in the same Chart
- Replies: 4
- Views: 17418
- Thu Feb 17, 2005 9:13 am
- Forum: JFreeChart - Stockmarket
- Topic: How can i mix 2 graph (jfree 0.92.21)
- Replies: 1
- Views: 8782
Try this! plot_.setRenderer(0, rendererA); plot_.setRenderer(1, rendererB); plot_.setDataset(0, (XYDataset) datasetA); plot_.setDataset(1, (XYDataset) datasetB); additionally you can also do a map between dataset and renderer like below. plot_.mapDatasetToDomainAxis(0, 0); plot_.mapDatasetToDomainAx...
- Sat Jan 29, 2005 8:31 am
- Forum: JFreeChart - Stockmarket
- Topic: how do i add dataset to and remove dataset from plot dynami
- Replies: 1
- Views: 8975
- Sat Jan 29, 2005 8:29 am
- Forum: JFreeChart
- Topic: JFreeChart adding MenuItems to plot popup menu?
- Replies: 2
- Views: 4320
- Mon Dec 06, 2004 12:10 pm
- Forum: JFreeChart
- Topic: How to change tick unit?
- Replies: 3
- Views: 4242
How to change tick unit?
I want to set the tick unit to a fixed value, if the tick Unit is less than some arbitrary value. Say if the tick Unit is less than 10, I need to set the value as 10 or else I need to use the tick Unit set by jFree. Could some body let me know as to how to do this? 200 - 150 - 100 - 50 - 0 above nee...
- Mon Nov 22, 2004 7:53 am
- Forum: JFreeChart
- Topic: Adding/removing series dynamically.
- Replies: 0
- Views: 2189
Adding/removing series dynamically.
I have a requirement of Timeseries chart with two series (say base and compare), with 2 axes (one each for base and compare). This line shall be controlled from GUI (say check box), by checking base the base line will be rendered and by checking compare the compare line is rendedred. Now the problem...
- Wed Sep 29, 2004 8:46 am
- Forum: JFreeChart
- Topic: Tooltip on a fixed positon
- Replies: 0
- Views: 2035
Tooltip on a fixed positon
How to render a tool tip on a fixed position say top right corner and should be displayed always unlike the original tool tip, which vanishes after a set time.
Thanks a lot.
Thanks a lot.
- Sat Aug 28, 2004 11:21 am
- Forum: JFreeChart
- Topic: Double click on legend to change colors
- Replies: 3
- Views: 4905
- Thu Aug 26, 2004 5:57 am
- Forum: JFreeChart
- Topic: Double click on legend to change colors
- Replies: 3
- Views: 4905
- Thu Jul 15, 2004 1:35 am
- Forum: JFreeChart
- Topic: trend cursor
- Replies: 4
- Views: 6885
You can use Horizontal/Vertical Trace if you really want to use move instead of click. But there are down sides for this, repaint() may not work as expected.
Refer to my work around :
http://www.jfree.org/phpBB2/viewtopic.p ... ght=#27132
Refer to my work around :
http://www.jfree.org/phpBB2/viewtopic.p ... ght=#27132
- Mon Jul 12, 2004 8:02 am
- Forum: JFreeChart
- Topic: throw exception,help me ..................please.!
- Replies: 1
- Views: 5367
Your problem is some thing similar to :
http://www.jfree.org/phpBB2/viewtopic.php?t=8420
http://www.jfree.org/phpBB2/viewtopic.php?t=8420
- Fri Jun 25, 2004 9:39 am
- Forum: JFreeChart
- Topic: Problem with setting time span in x-axis
- Replies: 5
- Views: 10523
I think you need to add data pertaining to months say from Jan to Dec (all 12 months) and want to show the tick as 1,4,7,10 (when selected Quarterly) and 1,7 (when selected as Halfyearly). But the data will be still plotted for all the months. Is that right? If yes you can set the Domain Axis with d...
- Fri Jun 25, 2004 4:25 am
- Forum: JFreeChart
- Topic: Is it possible with JFreechart?
- Replies: 2
- Views: 5554
- Fri Jun 25, 2004 3:06 am
- Forum: JFreeChart
- Topic: y-axis ranges problem
- Replies: 1
- Views: 4522
If you do a
then you can set the Tick in increment of 10.
Beaware: there is a down side of this, if your value in Range Axix is < 10 then you will not get any tick at all.
Code: Select all
rangeAxis.setTickUnit(new NumberTickUnit(10.0));
Beaware: there is a down side of this, if your value in Range Axix is < 10 then you will not get any tick at all.