JFreeChart BarChart -> NO gradiente

my gráfico de barras siempre se dibuja con un color degradado de forma predeterminada. Solo quiero un color simple sin efectos de estilo.

Alguien puede ayudar

Código

   final JFreeChart chart = ChartFactory.createBarChart(
        "",         // chart title
        xLabel,               // domain axis label
        yLabel,                  // range axis label
        dataset,                  // data
        PlotOrientation.VERTICAL, // orientation
        true,                     // include legend
        false,                     // tooltips?
        false                     // URLs?
    );

  final CategoryPlot plot = chart.getCategoryPlot();
  // SOMETHING HAS TO BE DONE HERE

  showChart(chart); // Simply shows the chart in a new window

Gracia