Search found 29 matches

by RCDran
Wed Mar 16, 2005 7:25 am
Forum: JFreeChart
Topic: HOW TO USE jfree chart library
Replies: 1
Views: 2712

Your question is much too general I think.
by RCDran
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

This is ok if the Plots are same, what if I need different Plots in same ChartPanel?
by RCDran
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...
by RCDran
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

Try setting null in setDataset(...), for removing the line and set the dataset for making it visible.
by RCDran
Sat Jan 29, 2005 8:29 am
Forum: JFreeChart
Topic: JFreeChart adding MenuItems to plot popup menu?
Replies: 2
Views: 4320

extend ChartPanel and handle by yourselves, thats easy and fast.
by RCDran
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...
by RCDran
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...
by RCDran
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.
by RCDran
Sat Aug 28, 2004 11:21 am
Forum: JFreeChart
Topic: Double click on legend to change colors
Replies: 3
Views: 4905

X,Y will be the co-ordinates of the mouse's location which does not matter how much ever the window size is. If you are going to re-size the window then the x,y you get is dtill the x,y of the mouse's location. So I think you can give a try.
by RCDran
Thu Aug 26, 2004 5:57 am
Forum: JFreeChart
Topic: Double click on legend to change colors
Replies: 3
Views: 4905

You may listen to the chartmouselistener and get the x,y co-ordinates and using that get the legend entiry and call the color chooser.

I have not done this personally, just an idea and perhaps there may be a better idea than this.
by RCDran
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
by RCDran
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
by RCDran
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...
by RCDran
Fri Jun 25, 2004 4:25 am
Forum: JFreeChart
Topic: Is it possible with JFreechart?
Replies: 2
Views: 5554

I think you can use XYBubbleRenderer for this purpose, but I have not tried this myself.
by RCDran
Fri Jun 25, 2004 3:06 am
Forum: JFreeChart
Topic: y-axis ranges problem
Replies: 1
Views: 4522

If you do a

Code: Select all

rangeAxis.setTickUnit(new NumberTickUnit(10.0));
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.