Search found 19 matches
- Mon Feb 04, 2008 5:43 pm
- Forum: JFreeChart
- Topic: What does size of median circle on BoxAndWhisker mean ?
- Replies: 9
- Views: 17260
- Mon Feb 04, 2008 5:40 pm
- Forum: JFreeChart
- Topic: CombinedDataset and auto scaling
- Replies: 6
- Views: 8260
Are you using a NumberAxis? If so, you could try: autoAdjustRange() Rescales the axis to ensure that all data is visible. Here's the javadocs for it: http://www.jfree.org/jfreechart/api/javadoc/org/jfree/chart/axis/NumberAxis.html You can get a reference to the axis from the plot object, which you g...
- Mon Feb 04, 2008 5:34 pm
- Forum: JFreeChart
- Topic: Problem while plotting huge data, pls help, Urgent.....
- Replies: 6
- Views: 10415
Hi, I also found this post for you: http://www.jfree.org/phpBB2/viewtopic.php?t=12788 It says: Make sure you have tooltips and URLs disabled, those will use a lot of memory at drawing time. If you are displaying the chart in a ChartPanel, you may also need to disable the collection of chart entities...
- Mon Feb 04, 2008 5:30 pm
- Forum: JFreeChart
- Topic: Graphical Cursor
- Replies: 5
- Views: 6231
- Mon Feb 04, 2008 5:27 pm
- Forum: JFreeChart
- Topic: How to set width of BoxAndWhisker item?
- Replies: 2
- Views: 5026
I figured out the problem. SetMargin is actually using a percentage of the available space for bars/boxes. And it's a 0 to 1 percentage, so .5 was way too big. The greater the margin, the smaller the bars/boxes. Also, you don't want to set the margin on the item, that's actually the wrong one. You w...
- Mon Feb 04, 2008 5:22 pm
- Forum: JFreeChart
- Topic: How do I center items inside the legend?
- Replies: 3
- Views: 4750
- Mon Feb 04, 2008 3:41 pm
- Forum: JFreeChart
- Topic: How can I set the first shown value of the Axis (TickMark)
- Replies: 2
- Views: 3928
- Mon Feb 04, 2008 3:39 pm
- Forum: JFreeChart
- Topic: how to use jfreechart
- Replies: 1
- Views: 2843
Here is a wonderful guide you can buy that will tell you just about everything you need to know: http://www.jfree.org/jfreechart/devguide.html However if you are incredibly broke you can start with the getting started/installation guide: http://sourceforge.net/project/showfiles.php?group_id=15494&pa...
- Fri Feb 01, 2008 4:10 pm
- Forum: JFreeChart
- Topic: How do I center items inside the legend?
- Replies: 3
- Views: 4750
How do I center items inside the legend?
Hi, I've been looking and looking but i haven't found the answer yet. How do i center items inside the legend? i found how to control the alginment of the legend, but that don't center the items inside of it: chart.getLegend().setHorizontalAlignment(HorizontalAlignment.CENTER); THanks for any help, ...
- Fri Feb 01, 2008 4:04 pm
- Forum: JFreeChart
- Topic: Align Legend
- Replies: 1
- Views: 3454
- Thu Jan 31, 2008 11:16 pm
- Forum: JFreeChart
- Topic: quartile chart
- Replies: 8
- Views: 8113
Or perhaps it would be easier to create a "Floating Bar Chart" where you can set where the bar rendering starts, then the heights of all the bars? Would that be hard? Hi, I figured out a way to do this. You can set the bottom bar to be the size you need the stacked bar to float. Then set the paint ...
- Thu Jan 31, 2008 8:32 pm
- Forum: JFreeChart
- Topic: quartile chart
- Replies: 8
- Views: 8113
Hi, one more thing... looking at Box and Whisker, it looks like you have to give it all the raw values, but for my benchmark / comparison data, all I have is the already-calculated quartile ranges, along with the median. No mean available. Does Box and Whisker always rely on calculating this itself...
- Thu Jan 31, 2008 8:28 pm
- Forum: JFreeChart
- Topic: How to set width of BoxAndWhisker item?
- Replies: 2
- Views: 5026
How to set width of BoxAndWhisker item?
Hi folks, I am trying to set the width of my BoxAndWhisker items - they are too fat. I tried this, but it has no effect: BoxAndWhiskerRenderer bRenderer = (BoxAndWhiskerRenderer) plot.getRenderer(); bRenderer.setSeriesFillPaint(0, Color.green); bRenderer.setItemMargin(0.5); I'm using jfreechart-1.0....
- Thu Jan 31, 2008 5:39 pm
- Forum: JFreeChart
- Topic: Item Labels get cut
- Replies: 7
- Views: 15239
- Thu Jan 31, 2008 5:35 pm
- Forum: JFreeChart
- Topic: Problem while plotting huge data, pls help, Urgent.....
- Replies: 6
- Views: 10415
JDBC Datasets
Have you considered using JDBCCategoryDataset or JDBCXYDataset? It will load data from the database for you. I don't know if it's quicker, but it might speed things up a little.
how big is the dataset?
how big is the dataset?