SetAxis

public class SetAxis
extends Axis
Hierarchy:
ObjectAxis ⯈ SetAxis

Summary

Instance Fields
Anchor anchor
Inherited from Axis.
Data data
double itemSizeRatio
String label
Inherited from Axis.
Anchor labelAnchor
Inherited from Axis.
String labelHdr
Anchor numberAnchor
Inherited from Axis.
Constructors
SetAxis (Data data, String labelHdr)
SetAxis (Data data)
Instance Methods
double calc (double v)
double calcTotalSizeX (double chartWidth, double totalItemsX)
double calcx (Chart chart, double v)
Inherited from Axis.
double calcy (Chart chart, double v)
Inherited from Axis.
void gridxLine (PrintStream out, Chart chart, double v)
Inherited from Axis.
void gridxNumber (PrintStream out, Chart chart, double v, String s)
Inherited from Axis.
void gridyLine (PrintStream out, Chart chart, double v)
Inherited from Axis.
void gridyNumber (PrintStream out, Chart chart, double v, String s)
Inherited from Axis.
void printAxisX (PrintStream out, Chart chart, double zeroy)
Inherited from Axis.
void printAxisY (PrintStream out, Chart chart, double zerox)
Inherited from Axis.
SetAxis setAnchor (Anchor anchor)
SetAxis setLabel (String label)
SetAxis setLabel (String label, Anchor labelAnchor)
Axis setNumberAnchor (Anchor anchor)
Inherited from Axis.
double zero ()
Inherited from Axis.
double zerox (Chart chart)
Inherited from Axis.
double zeroy (Chart chart)
Inherited from Axis.
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.

data

public Data data;

labelHdr

public String labelHdr;

itemSizeRatio

public double itemSizeRatio;

SetAxis

public SetAxis (
	Data data,
	String labelHdr
);

SetAxis

public SetAxis (
	Data data
);

setAnchor

@Override
public SetAxis setAnchor (
	Anchor anchor
);

Overrides Axis.setAnchor(Anchor).

setLabel

@Override
public SetAxis setLabel (
	String label,
	Anchor labelAnchor
);

Overrides Axis.setLabel(String, Anchor).

setLabel

@Override
public SetAxis setLabel (
	String label
);

Overrides Axis.setLabel(String).

calc

@Override
public double calc (
	double v
);

Implements Axis.calc(double).

calcTotalSizeX

public double calcTotalSizeX (
	double chartWidth,
	double totalItemsX
);