Can we display a single bar without titles, legends or axes?

Hi All,
We know that V isualization add ons supports a horizontal bar graph. Can we display a single bar without titles, legends or axes?

Here is the my barchart code.

    BarChartImage bc = new BarChartImage();	
	
bc.addXAxisLabel("Year");	
bc.addBar("Expenses");	
bc.addBar("Sales");	
bc.add("2004", new double[]{1000,400});	
bc.add("2005", new double[]{1170,460});	
bc.setSizeFull();	

Regards,
RSS