Search found 4 matches
- Sat Mar 06, 2010 3:47 pm
- Forum: JFreeChart
- Topic: Scatter plot with date axis
- Replies: 6
- Views: 10436
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...
- Wed Mar 03, 2010 11:49 pm
- Forum: JFreeChart
- Topic: XYAreaChartDemo Plots Overlapping Problem
- Replies: 0
- Views: 2195
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...
- Tue Mar 02, 2010 3:30 pm
- Forum: JFreeChart
- Topic: TimeSeriesCollection BarChart
- Replies: 0
- Views: 2066
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...
- Tue Mar 02, 2010 2:49 pm
- Forum: JFreeChart - Stockmarket
- Topic: example of Bar Chart(between value and time)?
- Replies: 5
- Views: 27871
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....