In JFreeChart XYSplineRenderer Graph I need to display small dots instead of small squares to display XY coordinates. How can I change the shape of these dots?
Asked
Active
Viewed 4,971 times
4
user7291698
- 1,743
- 2
- 12
- 30
ajkush
- 547
- 2
- 11
- 25
2 Answers
1
Use the setBaseShape method inherited from AbstractRenderer. Or you can use setSeriesShape
setBaseShape(new Ellipse2D.Float(100.0f, 100.0f, 100.0f, 100.0f));
BeRecursive
- 6,146
- 1
- 22
- 40