Search found 42 matches

by luis_esru
Wed Oct 13, 2004 7:51 am
Forum: JFreeChart
Topic: ScatterPlotDemo
Replies: 0
Views: 2151

ScatterPlotDemo

David How do I include more series in ScatterPlotDemo.java (1 point per series) without using SampleXYDataset2.java? See code below: ------------------------------------ import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartPanel; import org.jfree.chart.JFreeChart; import org.jfree.chart....
by luis_esru
Sun Sep 26, 2004 4:09 pm
Forum: JFreeChart
Topic: BubblePlotDemo - how to include sample data inside?
Replies: 4
Views: 4319

BubblePlotDemo chart

David

How difficult would be to create a class that implements the XYZdataset interface? Are you thinking in implementing it any time soon?

Rgds,
Luis
by luis_esru
Wed Sep 22, 2004 11:09 pm
Forum: JFreeChart
Topic: BubblePlotDemo - how to include sample data inside?
Replies: 4
Views: 4319

BubblePlotDemo - how to include sample data inside?

David I need to use BubblePlotDemo chart, but it's using SampleXYZDataset as a sample data source. How would I avoid that? (ie, how do I include a sample data in BubblePlotDemo?). See code below: ############################################################# import org.jfree.chart.ChartFactory; impor...
by luis_esru
Thu Mar 25, 2004 11:29 am
Forum: JFreeChart
Topic: Questions about some charts
Replies: 3
Views: 4314

Thanks.
Regards
Luis
by luis_esru
Wed Mar 24, 2004 5:37 pm
Forum: JFreeChart
Topic: Questions about some charts
Replies: 3
Views: 4314

Questions about some charts

Dear David I have some questions about some charts. BarChartDemo: * I would like to customize the ToolTips to include/exclude and change the order of information. Is there a working example of that? (note: this is also required in other charts!) * Is there a way of stopping the categories from wrapp...
by luis_esru
Fri Mar 05, 2004 4:43 pm
Forum: JFreeChart
Topic: General questions on JFreeCharts
Replies: 14
Views: 17321

david

but do the charts (XYBoxAndWhiskerDemo or HighLowChartDemo) handle it (ie have 3 highs, 1 average and 3 lows) for each category?

rgds
luis
by luis_esru
Thu Mar 04, 2004 3:56 pm
Forum: JFreeChart
Topic: implement XYTickLabelDemo functionality to contour
Replies: 1
Views: 2651

implement XYTickLabelDemo functionality to contour

david

is it possible to implement the functionality of plotting horizontally (in XYTickLabelDemo) to the contour plot?

rgds
luis
by luis_esru
Thu Mar 04, 2004 3:20 pm
Forum: JFreeChart
Topic: General questions on JFreeCharts
Replies: 14
Views: 17321

David

Any advice on point 2?

Regards
Luis
by luis_esru
Fri Feb 20, 2004 7:24 pm
Forum: JFreeChart
Topic: General questions on JFreeCharts
Replies: 14
Views: 17321

David 1. The change of 'hh' to 'HH' works! 2. Chart advice to display the following data: maximum=85.317 diversified_max=85.317 distributed_max=85.317 average=54.856 diversified_min=0.000 distributed_min=26.145 minimum=26.145 Note: Single instance to be displayed. I would like to know if any of the ...
by luis_esru
Thu Feb 19, 2004 7:01 pm
Forum: JFreeChart
Topic: General questions on JFreeCharts
Replies: 14
Views: 17321

David 1. You were right, I was using the version 15 in my class path still. So, the method to add subtitles works fine. Also, the wrapping mechanism works ok, except for long x-axis category labels because it overlaps them if the chart is too small – is there a way of stopping wrapping it? 2. For th...
by luis_esru
Wed Feb 18, 2004 6:16 pm
Forum: JFreeChart
Topic: General questions on JFreeCharts
Replies: 14
Views: 17321

David I’ve been working with version 15. But today I downloaded version 16 and for my surprise the problems increased. 1. chart.addSubtitle(new TextTitle(info)); is not supported in any chart: java.lang.NoSuchMethodError: org.jfree.chart.JFreeChart.addSubtitle(Lorg/jfree/chart/title/Title;)V at BarC...
by luis_esru
Tue Feb 17, 2004 5:33 pm
Forum: JFreeChart
Topic: General questions on JFreeCharts
Replies: 14
Views: 17321

David Thanks in advanced for the help and sorry for asking so many questions. Reply when possible! Zoom: Yes, I agree that only the range axis should be zoomed. But this does not work properly! It might zoom once, after 10 attempts. I'm talking about the mouse zoom, not the pop-up menu zoom (works f...
by luis_esru
Tue Feb 17, 2004 12:47 pm
Forum: JFreeChart
Topic: General questions on JFreeCharts
Replies: 14
Views: 17321

General questions on JFreeCharts

David I've been using JFreeCharts for my project and it has been very useful. I've to say that they are the most powerful charts around, that said, I have a few questions individual charts that I'm using in my work: 1. StackedBar Chart - Why isn't the zoom working properly with? chartPanel.setMouseZ...
by luis_esru
Tue Feb 17, 2004 9:45 am
Forum: JFreeChart
Topic: Time Series Chart question
Replies: 5
Views: 5643

Have a look at the sample below: Luis --- package org.jfree.chart.demo; import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartPanel; import org.jfree.chart.JFreeChart; import org.jfree.chart.labels.TimeSeriesToolTipGenerator; import org.jfree.chart.Marker; import org.jfree.chart.plot.XYPl...
by luis_esru
Mon Feb 16, 2004 1:13 pm
Forum: JFreeChart
Topic: SurveyResultsDemo3
Replies: 1
Views: 2577

SurveyResultsDemo3

David I would like to include the labels outside, close to the end of the bars and centered. How do I do it with the following code, ItemLabelPosition position = new ItemLabelPosition( ItemLabelAnchor.INSIDE3, TextAnchor.CENTER_RIGHT, TextAnchor.CENTER_RIGHT, 0.0); Note: I’m using horizontal bars. R...