Uses of Class
org.faceless.graph2.Series

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

Uses of Series in org.faceless.graph2
 

Subclasses of Series in org.faceless.graph2
 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 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 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.
 

Methods in org.faceless.graph2 that return Series
 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
 

Methods in org.faceless.graph2 with parameters of type Series
 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.
 



Copyright © 2001-2011 Big Faceless Organization