Search found 1 match
- Tue Dec 16, 2014 12:32 am
- Forum: JFreeChart
- Topic: What does size of median circle on BoxAndWhisker mean ?
- Replies: 9
- Views: 17271
Re: What does size of median circle on BoxAndWhisker mean ?
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() { ret...