Difficulty Changing background colour of JFreeChart
问题 Im trying to change the background color to my bar chart and so far nothing seems to be working Here is my code below: JFreeChart expbarchart = ChartFactory.createBarChart("Monthly Expenditures", "Expenditure Type", "Amount (£)", barexp, PlotOrientation.VERTICAL, false, true, false); ChartPanel expframe = new ChartPanel(expbarchart); expframe.setLocation(695, 49); expframe.setSize(641,500); expframe.setBorder(new EtchedBorder(EtchedBorder.LOWERED, new Color(173, 216, 230), null)); graphpanel