Uses of Class
org.faceless.graph2.GeneralBarSeries

Packages that use GeneralBarSeries
org.faceless.graph2 Contains all the classes required to create and render a Graph to an SVG, PNG, PDF or other format. 
 

Uses of GeneralBarSeries in org.faceless.graph2
 

Subclasses of GeneralBarSeries in org.faceless.graph2
 class BarSeries
          The most basic form of Bar series, this can be used to plot bars to a graph like so:
  AxesGraph graph = new AxesGraph();
  BarSeries series = new BarSeries("Fruit");
  series.set("Apples", 10);
  series.set("Oranges", 13);
  graph.addSeries(series);
 
 Adding a BarSeries to an AxesGraph will typically result in the X-axis being
 set to a BarAxis, and the default ordering of the bars is the order they're
 added to the Series.
 class BoxWhiskerSeries
          A BoxWhisker Series is used for plotting statistical data.
 class MultiBarSeries
          This type of Bar Series allows several sets of bars to be "grouped", ie drawn next to eachother.
 class StackedBarSeries
          A StackedBarSeries creates a bar graph where the bars are stacked on top of each other.
 



Copyright © 2001-2011 Big Faceless Organization