- AbstractGraphicContextSanityTest - Class in de.slothsoft.charts.test
 
- 
We can't really tests 
GraphicContexts without a sophisticated algorithm to
 verify the resulting images (which is probably better done by a human looking over the
 images from example-generator), but we can sanity check if calling all methods of the
 GC will work without an exception.
 
 
- AbstractGraphicContextSanityTest() - Constructor for class de.slothsoft.charts.test.AbstractGraphicContextSanityTest
 
-  
 
- addBar(double) - Method in class de.slothsoft.charts.barchart.BarChart
 
- 
Creates a new 
Bar and adds it to this chart.
 
 
- addBars(double...) - Method in class de.slothsoft.charts.barchart.BarChart
 
- 
Creates some new 
Bars and adds them to this chart.
 
 
- addLine(Line) - Method in class de.slothsoft.charts.linechart.LineChart
 
- 
Adds a line to the chart.
 
- addLines(Line...) - Method in class de.slothsoft.charts.linechart.LineChart
 
- 
Adds some lines to the chart.
 
- addRefreshListener(RefreshListener) - Method in class de.slothsoft.charts.barchart.Bar
 
- 
Adds a refresh listener that is called whenever the source needs to be redrawn by
 the GUI.
 
- addRefreshListener(RefreshListener) - Method in class de.slothsoft.charts.Chart
 
- 
Adds a refresh listener that is called whenever this 
Chart needs to be
 redrawn by the GUI.
 
 
- addRefreshListener(RefreshListener) - Method in class de.slothsoft.charts.common.Axis
 
-  
 
- addRefreshListener(RefreshListener) - Method in class de.slothsoft.charts.common.Border
 
-  
 
- addRefreshListener(RefreshListener) - Method in class de.slothsoft.charts.common.Title
 
-  
 
- addRefreshListener(RefreshListener) - Method in interface de.slothsoft.charts.Drawable
 
- 
Adds a refresh listener that is called whenever this 
Drawable needs to be
 redrawn by the GUI.
 
 
- addRefreshListener(RefreshListener) - Method in class de.slothsoft.charts.internal.RefreshListeners
 
- 
Adds a refresh listener that is called whenever the source needs to be redrawn by
 the GUI.
 
- addRefreshListener(RefreshListener) - Method in class de.slothsoft.charts.linechart.Line
 
-  
 
- addRefreshListener(RefreshListener) - Method in class de.slothsoft.charts.piechart.PieSlice
 
- 
Adds a refresh listener that is called whenever the source needs to be redrawn by
 the GUI.
 
- addSlice(double) - Method in class de.slothsoft.charts.piechart.PieChart
 
- 
Creates a new 
PieSlice and adds it to this chart.
 
 
- addSlices(double...) - Method in class de.slothsoft.charts.piechart.PieChart
 
- 
Creates some new 
PieSlices and adds them to this chart.
 
 
- alignment(TextAlignment) - Method in class de.slothsoft.charts.common.Title
 
- 
Sets the alignment of the title.
 
- AllMethodsChart - Class in de.slothsoft.charts.test
 
- 
 
- AllMethodsChart() - Constructor for class de.slothsoft.charts.test.AllMethodsChart
 
-  
 
- apply(double) - Method in interface de.slothsoft.charts.linechart.FunctionLine.Function
 
- 
Applies this function to the given argument.
 
- Area - Class in de.slothsoft.charts
 
- 
A simple class representing an area with start and end point.
 
- Area() - Constructor for class de.slothsoft.charts.Area
 
- 
Constructor that sets start and end points to 0|0.
 
- Area(double, double) - Constructor for class de.slothsoft.charts.Area
 
- 
Constructor that sets start point to 0|0.
 
- Area(double, double, double, double) - Constructor for class de.slothsoft.charts.Area
 
- 
Constructor.
 
- area(Area) - Method in class de.slothsoft.charts.PaintInstructions
 
- 
Sets the area to draw on.
 
- arrowSize(double) - Method in class de.slothsoft.charts.common.Axis
 
- 
Sets the size of the arrow at the end of the graph.
 
- Axis - Class in de.slothsoft.charts.common
 
- 
The X or Y axis of a 
Chart.
 
 
- Axis() - Constructor for class de.slothsoft.charts.common.Axis
 
- 
Creates an axis using no converters for the coordinates.
 
- Axis(DoubleUnaryOperator, DoubleUnaryOperator) - Constructor for class de.slothsoft.charts.common.Axis
 
- 
Creates an axis using converters for the coordinates.
 
- calculateDisplayedArea() - Method in class de.slothsoft.charts.linechart.LineChart
 
- 
 
- calculateGraphArea(double, double) - Method in class de.slothsoft.charts.Chart
 
- 
Calculates the graph area by removing the 
ChartParts from the entire width
 and height.
 
 
- calculateHeight() - Method in class de.slothsoft.charts.Area
 
- 
 
- calculateTextSize(String) - Method in interface de.slothsoft.charts.GraphicContext
 
- 
Calculates the size of the text.
 
- calculateTextSize(String) - Method in class de.slothsoft.charts.internal.DelegatingGraphicContext
 
-  
 
- calculateTextSize(String) - Method in class de.slothsoft.charts.internal.LogGraphicContext
 
-  
 
- calculateTextSize(String) - Method in class de.slothsoft.charts.swing.Graphics2DGraphicContext
 
-  
 
- calculateTextSize(String) - Method in class de.slothsoft.charts.swt.SwtGraphicContext
 
-  
 
- calculateWidth() - Method in class de.slothsoft.charts.Area
 
- 
 
- Chart - Class in de.slothsoft.charts
 
- 
This is the base class this library is for.
 
- Chart() - Constructor for class de.slothsoft.charts.Chart
 
- 
Default constructor.
 
- ChartControl - Class in de.slothsoft.charts.swing
 
- 
A Swing control displaying a 
Chart and hooking it to the Swing framework.
 
 
- ChartControl() - Constructor for class de.slothsoft.charts.swing.ChartControl
 
- 
Default constructor without model.
 
- ChartControl(Chart) - Constructor for class de.slothsoft.charts.swing.ChartControl
 
- 
Default constructor.
 
- ChartControl - Class in de.slothsoft.charts.swt
 
- 
A SWT control displaying a 
Chart and hooking it to the SWT framework.
 
 
- ChartControl(Composite, int) - Constructor for class de.slothsoft.charts.swt.ChartControl
 
- 
Constructs a new instance of this class given its parentand a style value
 describing its behavior and appearance.
 
- ChartPart - Interface in de.slothsoft.charts
 
- 
This class represents a part of the 
Chart that is not used for the actual
 graph.
 
 
- clip(Area) - Method in interface de.slothsoft.charts.GraphicContext
 
- 
Restricts which area of the context can be used to drawn on.
 
- clip(Area) - Method in class de.slothsoft.charts.internal.DelegatingGraphicContext
 
-  
 
- clip(Area) - Method in class de.slothsoft.charts.internal.LogGraphicContext
 
-  
 
- clip(Area) - Method in class de.slothsoft.charts.swing.Graphics2DGraphicContext
 
-  
 
- clip(Area) - Method in class de.slothsoft.charts.swt.SwtGraphicContext
 
-  
 
- color(int) - Method in class de.slothsoft.charts.barchart.Bar
 
- 
Sets the color as ARGB int, e.g.
 
- color(int) - Method in class de.slothsoft.charts.common.Title
 
- 
Sets the color as ARGB int, e.g.
 
- color(int) - Method in class de.slothsoft.charts.linechart.Line
 
- 
Sets the color as ARGB int, e.g.
 
- color(int) - Method in class de.slothsoft.charts.piechart.PieSlice
 
- 
Sets the color as ARGB int, e.g.
 
- containsPoint(double, double) - Method in class de.slothsoft.charts.Area
 
- 
Returns true, if this area contains the point.
 
- convertToChartX(double) - Method in class de.slothsoft.charts.linechart.LineChart
 
- 
Converts a graph coordinate to a chart one.
 
- convertToChartY(double) - Method in class de.slothsoft.charts.linechart.LineChart
 
- 
Converts a graph coordinate to a chart one.
 
- convertToGraphCoordinates(double, double) - Method in class de.slothsoft.charts.linechart.LineChart
 
- 
Converts chart coordinates to a graph ones.
 
- convertToGraphX(double) - Method in class de.slothsoft.charts.linechart.LineChart
 
- 
Converts a chart coordinate to a graph one.
 
- convertToGraphY(double) - Method in class de.slothsoft.charts.linechart.LineChart
 
- 
Converts a chart coordinate to a graph one.
 
- copy() - Method in class de.slothsoft.charts.Area
 
- 
Creates a copy of this class.
 
- copy() - Method in class de.slothsoft.charts.PaintInstructions
 
- 
Creates a copy of this class.
 
- createImage(Chart, int, int) - Static method in class de.slothsoft.charts.swing.SwingChartUtil
 
- 
 
- createImage(Chart, int, int) - Static method in class de.slothsoft.charts.swt.SwtChartUtil
 
- 
Creates an Image from a chart.
 
- getAlignment() - Method in class de.slothsoft.charts.common.Title
 
- 
Returns the alignment of the title.
 
- getArea() - Method in class de.slothsoft.charts.PaintInstructions
 
- 
Returns the area to draw on.
 
- getArrowSize() - Method in class de.slothsoft.charts.common.Axis
 
- 
Returns the size of the arrow at the end of the graph.
 
- getAxis() - Method in class de.slothsoft.charts.barchart.BarChart
 
- 
Returns the axis of this line chart.
 
- getBackgroundColor() - Method in class de.slothsoft.charts.Chart
 
- 
Returns the color as ARGB int, e.g.
 
- getBigTickSize() - Method in class de.slothsoft.charts.common.Axis
 
- 
Returns the size of the big ticks in pixels.
 
- getBigTickSteps() - Method in class de.slothsoft.charts.common.Axis
 
- 
Returns the range after which a big tick is painted on the graph.
 
- getBorder() - Method in class de.slothsoft.charts.Chart
 
- 
Returns the border this chart has.
 
- getColor() - Method in class de.slothsoft.charts.barchart.Bar
 
- 
Returns the color as ARGB int, e.g.
 
- getColor() - Method in class de.slothsoft.charts.common.Title
 
- 
Returns the color as ARGB int, e.g.
 
- getColor() - Method in interface de.slothsoft.charts.GraphicContext
 
- 
Returns the color as ARGB int, e.g.
 
- getColor() - Method in class de.slothsoft.charts.internal.DelegatingGraphicContext
 
-  
 
- getColor() - Method in class de.slothsoft.charts.internal.LogGraphicContext
 
-  
 
- getColor() - Method in class de.slothsoft.charts.linechart.Line
 
- 
Returns the color as ARGB int, e.g.
 
- getColor() - Method in class de.slothsoft.charts.piechart.PieSlice
 
- 
Returns the color as ARGB int, e.g.
 
- getColor() - Method in class de.slothsoft.charts.swing.Graphics2DGraphicContext
 
-  
 
- getColor() - Method in class de.slothsoft.charts.swt.SwtGraphicContext
 
-  
 
- getDefaultBarColor() - Method in class de.slothsoft.charts.barchart.BarChart
 
- 
Returns the default color of the bars as ARGB int, e.g.
 
- getDelegate() - Method in class de.slothsoft.charts.swing.Graphics2DGraphicContext
 
- 
Returns the Graphics2D.
 
- getDelegate() - Method in class de.slothsoft.charts.swt.SwtGraphicContext
 
- 
Returns the GC.
 
- getDisplayedArea() - Method in class de.slothsoft.charts.linechart.LineChart
 
- 
Returns the displayed area of this chart, i.e.
 
- getEndX() - Method in class de.slothsoft.charts.Area
 
-  
 
- getEndY() - Method in class de.slothsoft.charts.Area
 
-  
 
- getFont() - Method in class de.slothsoft.charts.common.Title
 
- 
Returns the font used to paint the title.
 
- getFont() - Method in interface de.slothsoft.charts.GraphicContext
 
- 
Returns the font as an enum with the font properties as hints for the actual font
 used by the GUI.
 
- getFont() - Method in class de.slothsoft.charts.internal.DelegatingGraphicContext
 
-  
 
- getFont() - Method in class de.slothsoft.charts.internal.LogGraphicContext
 
-  
 
- getFont() - Method in class de.slothsoft.charts.swing.Graphics2DGraphicContext
 
-  
 
- getFont() - Method in class de.slothsoft.charts.swt.SwtGraphicContext
 
-  
 
- getLog() - Method in class de.slothsoft.charts.internal.LogGraphicContext
 
-  
 
- getModel() - Method in class de.slothsoft.charts.swing.ChartControl
 
- 
Returns the 
Chart that gets displayed by this control.
 
 
- getModel() - Method in class de.slothsoft.charts.swt.ChartControl
 
- 
Returns the 
Chart that gets displayed by this control.
 
 
- getMovementMouseButton() - Method in class de.slothsoft.charts.swing.MoveLineChartByMouseListener
 
- 
Returns the button that needs to be pressed to move the chart.
 
- getMovementMouseButton() - Method in class de.slothsoft.charts.swt.MoveLineChartByMouseListener
 
- 
Returns the button that needs to be pressed to move the chart.
 
- getPieBorder() - Method in class de.slothsoft.charts.piechart.PieChart
 
- 
Returns the pie's border size.
 
- getPieColor() - Method in class de.slothsoft.charts.piechart.PieChart
 
- 
Returns the color of the pie as ARGB int, e.g.
 
- getPosition() - Method in class de.slothsoft.charts.common.Title
 
- 
Returns the position of the title.
 
- getPosition() - Method in class de.slothsoft.charts.linechart.XAxis
 
- 
Returns the position of the x axis.
 
- getPosition() - Method in class de.slothsoft.charts.linechart.YAxis
 
- 
Returns the position of the y axis.
 
- getPreferredArea() - Method in class de.slothsoft.charts.linechart.FunctionLine
 
- 
Returns the area this line would like to display.
 
- getSize() - Method in class de.slothsoft.charts.common.Title
 
- 
Returns the height of the title, if one is drawn.
 
- getSize() - Method in enum de.slothsoft.charts.Font
 
- 
Returns the size hint.
 
- getSource() - Method in class de.slothsoft.charts.RefreshListener.Event
 
- 
The source of the event.
 
- getSpaceOnBottom() - Method in class de.slothsoft.charts.common.Border
 
- 
Return the border size on the bottom.
 
- getSpaceOnLeft() - Method in class de.slothsoft.charts.common.Border
 
- 
Return the border size on the left.
 
- getSpaceOnRight() - Method in class de.slothsoft.charts.common.Border
 
- 
Return the border size on the right.
 
- getSpaceOnTop() - Method in class de.slothsoft.charts.common.Border
 
- 
Return the border size on the top.
 
- getStartAngle() - Method in class de.slothsoft.charts.piechart.PieChart
 
- 
Returns the angle the pie starts drawing its slices.
 
- getStartX() - Method in class de.slothsoft.charts.Area
 
-  
 
- getStartY() - Method in class de.slothsoft.charts.Area
 
-  
 
- getStepSize() - Method in class de.slothsoft.charts.linechart.FunctionLine
 
- 
 
- getText() - Method in class de.slothsoft.charts.common.Title
 
- 
Returns the text that is the title or null to show there is no title.
 
- getTickSize() - Method in class de.slothsoft.charts.common.Axis
 
- 
Returns the size of the ticks in pixels.
 
- getTickSteps() - Method in class de.slothsoft.charts.common.Axis
 
- 
Returns the range after which a tick is painted on the graph.
 
- getTitle() - Method in class de.slothsoft.charts.Chart
 
- 
Returns the title this chart has.
 
- getValue() - Method in class de.slothsoft.charts.barchart.Bar
 
- 
Sets the value this represents.
 
- getValue() - Method in class de.slothsoft.charts.piechart.PieSlice
 
- 
Sets the value this slice represents.
 
- getXAxis() - Method in class de.slothsoft.charts.linechart.LineChart
 
- 
Returns the x axis of this line chart.
 
- getYAxis() - Method in class de.slothsoft.charts.linechart.LineChart
 
- 
Returns the y axis of this line chart.
 
- getZoomFactor() - Method in class de.slothsoft.charts.linechart.LineChart
 
- 
Returns the factor which should be used to zoom the graph area.
 
- GraphicContext - Interface in de.slothsoft.charts
 
- 
Something you can draw on.
 
- Graphics2DGraphicContext - Class in de.slothsoft.charts.swing
 
- 
 
- Graphics2DGraphicContext(Graphics2D) - Constructor for class de.slothsoft.charts.swing.Graphics2DGraphicContext
 
-  
 
- scale(double) - Method in interface de.slothsoft.charts.GraphicContext
 
- 
Scales the drawing canvas with the factor.
 
- scale(double, double) - Method in interface de.slothsoft.charts.GraphicContext
 
- 
Scales the drawing canvas with the factor.
 
- scale(double) - Method in class de.slothsoft.charts.internal.DelegatingGraphicContext
 
-  
 
- scale(double, double) - Method in class de.slothsoft.charts.internal.DelegatingGraphicContext
 
-  
 
- scale(double, double) - Method in class de.slothsoft.charts.internal.LogGraphicContext
 
-  
 
- scale(double, double) - Method in class de.slothsoft.charts.swing.Graphics2DGraphicContext
 
-  
 
- scale(double, double) - Method in class de.slothsoft.charts.swt.SwtGraphicContext
 
-  
 
- setAlignment(TextAlignment) - Method in class de.slothsoft.charts.common.Title
 
- 
Sets the alignment of the title.
 
- setArea(Area) - Method in class de.slothsoft.charts.PaintInstructions
 
- 
Sets the area to draw on.
 
- setArrowSize(double) - Method in class de.slothsoft.charts.common.Axis
 
- 
Sets the size of the arrow at the end of the graph.
 
- setBackgroundColor(int) - Method in class de.slothsoft.charts.Chart
 
- 
Sets the color as ARGB int, e.g.
 
- setBigTickSize(int) - Method in class de.slothsoft.charts.common.Axis
 
- 
Sets the size of the big ticks in pixels.
 
- setBigTickSteps(int) - Method in class de.slothsoft.charts.common.Axis
 
- 
Sets the range after which a big tick is painted on the graph.
 
- setColor(int) - Method in class de.slothsoft.charts.barchart.Bar
 
- 
Sets the color as ARGB int, e.g.
 
- setColor(int) - Method in class de.slothsoft.charts.common.Title
 
- 
Sets the color as ARGB int, e.g.
 
- setColor(int) - Method in interface de.slothsoft.charts.GraphicContext
 
- 
Sets the color as ARGB int, e.g.
 
- setColor(int) - Method in class de.slothsoft.charts.internal.DelegatingGraphicContext
 
-  
 
- setColor(int) - Method in class de.slothsoft.charts.internal.LogGraphicContext
 
-  
 
- setColor(int) - Method in class de.slothsoft.charts.linechart.Line
 
- 
Sets the color as ARGB int, e.g.
 
- setColor(int) - Method in class de.slothsoft.charts.piechart.PieSlice
 
- 
Sets the color as ARGB int, e.g.
 
- setColor(int) - Method in class de.slothsoft.charts.swing.Graphics2DGraphicContext
 
-  
 
- setColor(int) - Method in class de.slothsoft.charts.swt.SwtGraphicContext
 
-  
 
- setDefaultBarColor(int) - Method in class de.slothsoft.charts.barchart.BarChart
 
- 
Sets the default color of the bars as ARGB int, e.g.
 
- setDelegate(Graphics2D) - Method in class de.slothsoft.charts.swing.Graphics2DGraphicContext
 
- 
Sets the Graphics2D.
 
- setDelegate(GC) - Method in class de.slothsoft.charts.swt.SwtGraphicContext
 
- 
Sets the GC.
 
- setDisplayedArea(Area) - Method in class de.slothsoft.charts.linechart.LineChart
 
- 
Sets the displayed area of this chart, i.e.
 
- setEndX(double) - Method in class de.slothsoft.charts.Area
 
-  
 
- setEndY(double) - Method in class de.slothsoft.charts.Area
 
-  
 
- setFont(Font) - Method in class de.slothsoft.charts.common.Title
 
- 
Sets the font used to paint the title.
 
- setFont(Font) - Method in interface de.slothsoft.charts.GraphicContext
 
- 
Sets the font as an enum with the font properties as hints for the actual font used
 by the GUI.
 
- setFont(Font) - Method in class de.slothsoft.charts.internal.DelegatingGraphicContext
 
-  
 
- setFont(Font) - Method in class de.slothsoft.charts.internal.LogGraphicContext
 
-  
 
- setFont(Font) - Method in class de.slothsoft.charts.swing.Graphics2DGraphicContext
 
-  
 
- setFont(Font) - Method in class de.slothsoft.charts.swt.SwtGraphicContext
 
-  
 
- setModel(Chart) - Method in class de.slothsoft.charts.swing.ChartControl
 
- 
Sets the 
Chart that gets displayed by this control.
 
 
- setModel(Chart) - Method in class de.slothsoft.charts.swt.ChartControl
 
- 
Sets the 
Chart that gets displayed by this control.
 
 
- setMovementMouseButton(int) - Method in class de.slothsoft.charts.swing.MoveLineChartByMouseListener
 
- 
Sets the button that needs to be pressed to move the chart.
 
- setMovementMouseButton(int) - Method in class de.slothsoft.charts.swt.MoveLineChartByMouseListener
 
- 
Sets the button that needs to be pressed to move the chart.
 
- setPieBorder(double) - Method in class de.slothsoft.charts.piechart.PieChart
 
- 
Sets the pie's border size.
 
- setPieColor(int) - Method in class de.slothsoft.charts.piechart.PieChart
 
- 
Sets the color of the pie as ARGB int, e.g.
 
- setPosition(Title.Position) - Method in class de.slothsoft.charts.common.Title
 
- 
Sets the position of the title.
 
- setPosition(XAxis.Position) - Method in class de.slothsoft.charts.linechart.XAxis
 
- 
Sets the position of the x axis.
 
- setPosition(YAxis.Position) - Method in class de.slothsoft.charts.linechart.YAxis
 
- 
Sets the position of the y axis.
 
- setPreferredArea(Area) - Method in class de.slothsoft.charts.linechart.FunctionLine
 
- 
Sets the area this line would like to display.
 
- setSize(double) - Method in class de.slothsoft.charts.common.Title
 
- 
Sets the height of the title, if one is drawn.
 
- setSpace(int) - Method in class de.slothsoft.charts.common.Border
 
- 
Sets the border size in all four directions.
 
- setSpaceOnBottom(int) - Method in class de.slothsoft.charts.common.Border
 
- 
Sets the border size on the bottom.
 
- setSpaceOnLeft(int) - Method in class de.slothsoft.charts.common.Border
 
- 
Sets the border size on the left.
 
- setSpaceOnRight(int) - Method in class de.slothsoft.charts.common.Border
 
- 
Sets the border size on the right.
 
- setSpaceOnTop(int) - Method in class de.slothsoft.charts.common.Border
 
- 
Sets the border size on the top.
 
- setStartAngle(double) - Method in class de.slothsoft.charts.piechart.PieChart
 
- 
Sets the angle the pie starts drawing its slices.
 
- setStartX(double) - Method in class de.slothsoft.charts.Area
 
-  
 
- setStartY(double) - Method in class de.slothsoft.charts.Area
 
-  
 
- setStepSize(double) - Method in class de.slothsoft.charts.linechart.FunctionLine
 
- 
 
- setText(String) - Method in class de.slothsoft.charts.common.Title
 
- 
Sets the text that is the title or null to show there is no title.
 
- setTickSize(int) - Method in class de.slothsoft.charts.common.Axis
 
- 
Sets the size of the ticks in pixels.
 
- setTickSteps(int) - Method in class de.slothsoft.charts.common.Axis
 
- 
Sets the range after which a tick is painted on the graph.
 
- setUp() - Method in class de.slothsoft.charts.test.AbstractGraphicContextSanityTest
 
-  
 
- setValue(double) - Method in class de.slothsoft.charts.barchart.Bar
 
- 
Sets the value this represents.
 
- setValue(double) - Method in class de.slothsoft.charts.piechart.PieSlice
 
- 
Sets the value this slice represents.
 
- setZoomFactor(double) - Method in class de.slothsoft.charts.linechart.LineChart
 
- 
Sets the factor which should be used to zoom the graph area.
 
- size(double) - Method in class de.slothsoft.charts.common.Title
 
- 
Sets the height of the title, if one is drawn.
 
- snipNecessarySpace(Area) - Method in interface de.slothsoft.charts.ChartPart
 
- 
This method removes space from the existing area to make room for this part.
 
- snipNecessarySpace(Area) - Method in class de.slothsoft.charts.common.Border
 
-  
 
- snipNecessarySpace(Area) - Method in class de.slothsoft.charts.common.Title
 
-  
 
- space(int) - Method in class de.slothsoft.charts.common.Border
 
- 
Sets the border size in all four directions.
 
- spaceOnBottom(int) - Method in class de.slothsoft.charts.common.Border
 
- 
Sets the border size on the bottom.
 
- spaceOnLeft(int) - Method in class de.slothsoft.charts.common.Border
 
- 
Sets the border size on the left.
 
- spaceOnRight(int) - Method in class de.slothsoft.charts.common.Border
 
- 
Sets the border size on the right.
 
- spaceOnTop(int) - Method in class de.slothsoft.charts.common.Border
 
- 
Sets the border size on the top.
 
- startAngle(double) - Method in class de.slothsoft.charts.piechart.PieChart
 
- 
Sets the angle the pie starts drawing its slices.
 
- startX(double) - Method in class de.slothsoft.charts.Area
 
-  
 
- startY(double) - Method in class de.slothsoft.charts.Area
 
-  
 
- stepSize(double) - Method in class de.slothsoft.charts.linechart.FunctionLine
 
- 
 
- SwingChartUtil - Class in de.slothsoft.charts.swing
 
- 
Some util classes to generate stuff surrounding the 
Chart in Swing.
 
 
- SwtChartUtil - Class in de.slothsoft.charts.swt
 
- 
Some util classes to generate stuff surrounding the 
Chart in SWT.
 
 
- SwtGraphicContext - Class in de.slothsoft.charts.swt
 
- 
A 
GraphicContext implementation using the SWT 
GC to draw on whatever
 you like.
 
 
- SwtGraphicContext(GC) - Constructor for class de.slothsoft.charts.swt.SwtGraphicContext
 
- 
Constructor.
 
- value(double) - Method in class de.slothsoft.charts.barchart.Bar
 
- 
Sets the value this represents.
 
- value(double) - Method in class de.slothsoft.charts.piechart.PieSlice
 
- 
Sets the value this slice represents.
 
- valueOf(String) - Static method in enum de.slothsoft.charts.common.Title.Position
 
- 
Returns the enum constant of this type with the specified name.
 
- valueOf(String) - Static method in enum de.slothsoft.charts.Font
 
- 
Returns the enum constant of this type with the specified name.
 
- valueOf(String) - Static method in enum de.slothsoft.charts.linechart.XAxis.Position
 
- 
Returns the enum constant of this type with the specified name.
 
- valueOf(String) - Static method in enum de.slothsoft.charts.linechart.YAxis.Position
 
- 
Returns the enum constant of this type with the specified name.
 
- valueOf(String) - Static method in enum de.slothsoft.charts.TextAlignment
 
- 
Returns the enum constant of this type with the specified name.
 
- values() - Static method in enum de.slothsoft.charts.common.Title.Position
 
- 
Returns an array containing the constants of this enum type, in
the order they are declared.
 
- values() - Static method in enum de.slothsoft.charts.Font
 
- 
Returns an array containing the constants of this enum type, in
the order they are declared.
 
- values() - Static method in enum de.slothsoft.charts.linechart.XAxis.Position
 
- 
Returns an array containing the constants of this enum type, in
the order they are declared.
 
- values() - Static method in enum de.slothsoft.charts.linechart.YAxis.Position
 
- 
Returns an array containing the constants of this enum type, in
the order they are declared.
 
- values() - Static method in enum de.slothsoft.charts.TextAlignment
 
- 
Returns an array containing the constants of this enum type, in
the order they are declared.