|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| 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 |
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. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||