Search found 3 matches
- Fri Feb 01, 2008 8:25 pm
- Forum: JFreeChart
- Topic: What does size of median circle on BoxAndWhisker mean ?
- Replies: 9
- Views: 17271
To get around this problem I copied the BoxAndWhiskerRenderer class and created my own class called MyBoxAndWhiskerRenderer. I then added the following attributes: private double fixedRadius = -1; public void setFixedRadius(double value) { fixedRadius = value; } public double getFixedRadius() { retu...
- Mon Jan 28, 2008 6:51 pm
- Forum: JFreeChart
- Topic: Running JVM in headless mode on AS400
- Replies: 4
- Views: 5463
Re: Running JVM in headless mode on AS400
I am not actually setting the os400.awt.native property. By setting java.awt.headless=true, the os400.awt.native property should be automatically set to true. I did try manually setting the os400.awt.native property to true once, but that didn't help either.
- Fri Jan 25, 2008 7:31 pm
- Forum: JFreeChart
- Topic: Running JVM in headless mode on AS400
- Replies: 4
- Views: 5463
Running JVM in headless mode on AS400
I am trying to run a JFreeChart application on an AS400 system with WebSphere 6, JDK 1.4. I have tried several methods of setting the system to run in headless mode. In the past (on other unix systems) I had no problems simply putting the following line into my code: System.setProperty( "java.awt.he...