Package | Description |
---|---|
org.faceless.graph2 |
Contains all the classes required to create and render a Graph to an SVG, PNG, PDF or other format.
|
org.faceless.graph2.tag |
Contains classes that can be used by customers wanting to extend the Tag Library.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractLineSeries
A Line series represents a function - for every
X value there is
a corresponding f(X) . |
class |
AreaSeries
An AreaSeries is used to plot several
AbstractLineSeries , one on top of eachother,
with the space under each line filled. |
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 |
BubbleSeries
A Bubble Series can be used to plot round or elliptical "bubbles" on a graph.
|
class |
CandleSeries
A Candle Series is typically used for plotting stock prices.
|
class |
FunctionLineSeries
This class represents a mathematical curve (eg. a Sine curve), drawn onto the
graph as a line.
|
class |
GeneralBarSeries
The superclass for all types of series that involve plotting Bars to an
AxesGraph . |
class |
LineSeries
The LineSeries represents the data found on a typical line graph - a collection
of sampled values.
|
class |
MultiBarSeries
This type of Bar Series allows several sets of bars to be "grouped", ie drawn
next to eachother.
|
class |
ScatterSeries
The ScatterSeries allows you to draw a series which is entirely made up
of
Marker objects and nothing else. |
class |
SplineSeries
A
SplineSeries is very similar to a LineSeries class,
except that the line between the specified datapoints is "smoothed" by applying
a Spline curve. |
class |
StackedBarSeries
A StackedBarSeries creates a bar graph where the bars are stacked on top of each other.
|
class |
TrendSeries
A
TrendSeries can be used to plot a trend-line based on a LineSeries,
or on a series of data points. |
Modifier and Type | Method and Description |
---|---|
Series |
AxesGraph.getSeries(String name)
Return the series with the specified name from this AxesGraph, or
null if no such series has been added yet |
Modifier and Type | Method and Description |
---|---|
void |
AxesGraph.addSeries(Series series)
Add a series to this Graph, plotted against the bottom and left axes.
|
void |
AxesGraph.addSeries(Series series,
int pos)
Add a series to this Graph, plotted against the specified axes.
|
void |
Key.addSeries(Series series,
TextStyle style)
Add the specified series to the Key.
|
Modifier and Type | Method and Description |
---|---|
protected void |
PNGEmbedder.addSeriesToAreaMap(Area area,
String key,
Map imageareas,
Series series,
String seriesname,
Map areamap)
For the given Area and key, add any events for this key to the
areamap . |
protected void |
PNGEmbedder.addSeriesToScript(Area area,
String key,
Map imageareas,
Series series,
String seriesname,
StringBuffer out)
Add any JavaScript necessary for this area to the
script StringBuffer. |
Copyright © 2001-2016 Big Faceless Organization