01: package dinamica.charts;
02:
03: import org.jfree.chart.plot.*;
04:
05: /**
06: * Chart plugin for Horizontal Bar 2D charts with multiseries support
07: * Last update: 18/11/2003
08: * @author Martin Cordova (dinamica@martincordova.com)
09: */
10: public class HorizontalBarChart extends VerticalBarChart {
11:
12: public void configurePlot(Plot p) {
13: super .configurePlot(p);
14: CategoryPlot plot = (CategoryPlot) p;
15: plot.setOrientation(PlotOrientation.HORIZONTAL);
16: plot.setDomainGridlinesVisible(false);
17: }
18:
19: }
|