Package | Description |
---|---|
org.faceless.graph2 |
Contains all the classes required to create and render a Graph to an SVG, PNG, PDF or other format.
|
Modifier and Type | Class and Description |
---|---|
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.
|
Copyright © 2001-2016 Big Faceless Organization