Search found 2 matches
- Sun Dec 18, 2016 8:43 pm
- Forum: JFreeChart
- Topic: Buffered image loses domain axis values at a certain point
- Replies: 2
- Views: 4295
Re: Buffered image loses domain axis values at a certain poi
If the number of visible ticks excess ValueAxis.MAXIMUM_TICK_COUNT (which is 500), no tick labels will be drawn. With a chart width of 10000 pixels, you might exceed that limit. As a quick fix, increase the value to a more appropriate one (10000 looks like a reasonable value), and recompile the pac...
- Sun Dec 18, 2016 2:46 pm
- Forum: JFreeChart
- Topic: Buffered image loses domain axis values at a certain point
- Replies: 2
- Views: 4295
Buffered image loses domain axis values at a certain point
Whilst answering a Stack Overflow question about creating a buffered image in JavaFX using the method createBufferedImage I noticed when the image reaches a certain width the domain (x) axis' values disappear. I created a small runnable file which clearly demonstrates the problem (posted below) and ...