Context: Java swing application generating a chart using JFreeChart. The chart is a CombinedDomainXYPlot
(using XYBarRenderer
) that on the X-axis has a timeline based on PeriodAxis
.
Problem: I can't remove the vertical gridlines (not the tickmarks related to the time periods) that separate days.
What I tried is: combinedPlot.setDomainGridlinesVisible(false)
which doesn't work (see image below).
Any hint would be more than welcome!
Thx, Thomas