ChartPopulation

public abstract class ChartPopulation
implements Legend.LegendItem
Hierarchy:
Object ⯈ ChartPopulation
All implemented interfaces:
Legend.LegendItem
Known direct subclasses:
HSetChart.Population, ScatterChart.Population

Summary

Constructors
ChartPopulation (DataRenderer renderer, String style)
Abstract Methods
abstract ChartPopulation addLegend (Legend legend)
Instance Methods
ChartPopulation addLegend (Legend legend, String name)
String getLegendText ()
void printLegendSwatch (PrintStream out, double x, double y, int w, int h)
ChartPopulation setRenderer (DataRenderer renderer)
Show all inherited methods (11 more)
protected native Object clone ()
Inherited from Object.
boolean equals (Object)
Inherited from Object.
protected void finalize ()
Inherited from Object.
final native Class<?> getClass ()
Inherited from Object.
native int hashCode ()
Inherited from Object.
final native void notify ()
Inherited from Object.
final native void notifyAll ()
Inherited from Object.
String toString ()
Inherited from Object.
final void wait ()
Inherited from Object.
final native void wait (long)
Inherited from Object.
final void wait (long, int)
Inherited from Object.

legend

public String legend;

renderer

public DataRenderer renderer;

style

public String style;

ChartPopulation

public ChartPopulation (
	DataRenderer renderer,
	String style
);

setRenderer

public ChartPopulation setRenderer (
	DataRenderer renderer
);

addLegend

public abstract ChartPopulation addLegend (
	Legend legend
);

addLegend

public ChartPopulation addLegend (
	Legend legend,
	String name
);

getLegendText

@Override
public String getLegendText ();

Implements Legend.LegendItem.getLegendText().

printLegendSwatch

@Override
public void printLegendSwatch (
	PrintStream out,
	double x,
	double y,
	int w,
	int h
);

Implements Legend.LegendItem.printLegendSwatch(PrintStream, double, double, int, int).