I am trying to apply the solution found at here, but when I try to run it in IntelliJ, a couple of the XYItemRenderer methods like setBaseItemLabelGenerator, setBaseItemLabelPaint, setBasePositiveItemLabelPosition, etc are not found. I know I imported the right class because the declaration of the renderer is without issue. What else could I be missing that is causing the issue?
Tag: jfreechart
PlotOrientation of BoxAndWhiskerChart JFreeChart
I have a question about JFreeChart: Is it possible to change the PlotOrientation of a BoxAndWhiskerChart to horizontal? I have a histogram, and I want to add a BoxAndWhiskerChart below. I need it …
Random errors when changing series using JFreeChart
I’m making a GUI that display result of background calculations. But before that, I wanted to test changing the dataset. Here is my code: DefaultXYDataset dataset = new DefaultXYDataset(); @Override …