Search found 6 matches
- Mon Nov 06, 2006 4:03 pm
- Forum: JFreeChart
- Topic: JFree Error On Solaris
- Replies: 4
- Views: 4503
System Configuration
Hi I googled over to identify the reason and possible resolution for this issue. By using the following option at server start up, I was able to resolve this error. -Djava.awt.headless=true (works with JDK1.4 or above) Regards I may sound impolite now, but: R.T.F.M. You didnt read the FAQ, I guess, ...
- Mon Oct 30, 2006 9:38 pm
- Forum: JFreeChart
- Topic: JFree Error On Solaris
- Replies: 4
- Views: 4503
Re: JFree Error On Solaris
Hi Same issue is being encountered by me when I move the application WAR file built on Windows environment to Red Hat Linux (AS 4) environment. Surprisingly same WAR works fine on Weblogic running on Windows XP service Pack 1. Verified that the WAR has requisite JAR files. Regards java.lang.NoClassD...
- Mon Oct 30, 2006 6:04 pm
- Forum: JFreeChart
- Topic: Meter Chart Customization
- Replies: 1
- Views: 2261
Meter Chart Customization
Hi We need to customize the Meter Chart to meet the following requirmeents 1) Eventhough the data value does NOT fall between the Minimum and Maximum range, the Needle should still be displayed. Needle to be postioned at range start if data value is less than the Range Minimum and Needle should be p...
- Mon Oct 16, 2006 3:53 pm
- Forum: JFreeChart
- Topic: Non - numeric values for Series Line chart
- Replies: 3
- Views: 4020
thanks
thanks !
david.gilbert wrote:You have two options:
(1) Use the CategoryPlot class - this is designed for non-numeric x-values;
(2) Keep using XYPlot, but replace the x-axis with a SymbolAxis, and code your dataset accordingly (x values as integer index values).
- Mon Oct 16, 2006 3:34 pm
- Forum: JFreeChart
- Topic: Set Tick Label Postion - Meter Chart
- Replies: 0
- Views: 1819
Set Tick Label Postion - Meter Chart
Hi I am new to JFreeChart Lingo and would appreciate some help on issue faced by me :) I am rendering a Meter Chart having different ranges (so far so good.) But the problem arises when my range data is big (decimal data) causing the Tick labels to overlap and hence spoil the look n feel of the Char...
- Thu Sep 21, 2006 6:19 pm
- Forum: JFreeChart
- Topic: Non - numeric values for Series Line chart
- Replies: 3
- Views: 4020
Non - numeric values for Series Line chart
Hi Friends I am new to the JFreeChart environment. I am trying to plot a Line chart having 3 series. If I use numeric values for X axis values, I am good. eg XYSeries series1 = new XYSeries("Actual"); series1.add(4.0, 5.0); The problem arises when I want to use String values for X co-ordinates . Can...