Search found 4 matches

by RTJava
Sat Mar 06, 2010 3:47 pm
Forum: JFreeChart
Topic: Scatter plot with date axis
Replies: 6
Views: 9749

Re: Scatter plot with date axis

As well as "tooltips" must be changed as Date format. To do this, use as following XYToolTipGenerator : XYToolTipGenerator toolTipGenerator = new StandardXYToolTipGenerator(DEFAULT_TOOL_TIP_FORMAT, new SimpleDateFormat("dd/MM/yyyy"), NumberFormat.getNumberInstance() ); renderer.setBaseToolTipGenerat...
by RTJava
Wed Mar 03, 2010 11:49 pm
Forum: JFreeChart
Topic: XYAreaChartDemo Plots Overlapping Problem
Replies: 0
Views: 2002

XYAreaChartDemo Plots Overlapping Problem

Dear all, I have been trying to solve one issue which I have faced with in different plot types. Lower values are overlapped by higher values in multi-series chart(s). Example: When you change as "plot.setForegroundAlpha(1.0f);" in XYAreaChartDemo.java, you can easily observe that drawing areas hide...
by RTJava
Tue Mar 02, 2010 3:30 pm
Forum: JFreeChart
Topic: TimeSeriesCollection BarChart
Replies: 0
Views: 1876

TimeSeriesCollection BarChart

Dear Experts, I have short question related to http://www.jfree.org/phpBB2/viewtopic.php?f=10&t=23991 listed topic. When you add second series which values are lower than first series, it hides lower values series by XYBarRenderer, therefore it cannot be seen on the chart. For example: TimeSeries s2...
by RTJava
Tue Mar 02, 2010 2:49 pm
Forum: JFreeChart - Stockmarket
Topic: example of Bar Chart(between value and time)?
Replies: 5
Views: 22534

Re: example of Bar Chart(between value and time)?

Dear Experts, I have short question related to below listed example. When you add second series which values are lower than first series, it hides lower values series by XYBarRenderer, therefore it cannot be seen on the chart. For example: TimeSeries s2 = new TimeSeries("Series 2", Month.class); s2....