Another set of eyes is welcome. The goal is to have bars of a solid, flat color rather than the changing color. here is the relevant code to date: DefaultCategoryDataset queueset = new DefaultCategoryDataset(); queueset.addValue(Round((float) RunAVG,2), "r1", "Run"); queueset.addValue(Round( (float) WaitAVG,2), "r1", "Wait"); File chartfile = new File(ImagePath + Sep + GraphName); JFreeChart chart = ChartFactory.createBarChart(null,null,null,queueset,PlotOrientation.VERTICAL, false, false, false); chart.setBackgroundPaint(Color.WHITE); CategoryPlot ...