Package | Description |
---|---|
info.monitorenter.gui.chart |
The core package for jchart2d.
|
info.monitorenter.gui.chart.errorbars |
Contains the implementation of the error bar API - namely the
interfaces
,
and
of jchart2d. |
info.monitorenter.gui.chart.traces |
Contains
ITrace2D implementations
of jchart2d that model the traces of the chart. |
info.monitorenter.gui.chart.traces.painters |
Contains
ITracePainter implementations
of jchart2d that are used to render the traces of the chart. |
Modifier and Type | Interface and Description |
---|---|
interface |
ITracePainter<T extends ITracePainter<T>>
An interface that works at trace level and defines how it's points are rendered.
|
Modifier and Type | Interface and Description |
---|---|
interface |
IErrorBarPolicy<T extends IErrorBarPolicy<T>>
Interface for a facade towards painting error bars that adds a layer of
configuration.
|
Modifier and Type | Method and Description |
---|---|
Set<ITracePainter<?>> |
ITrace2D.getTracePainters()
Returns the
Set< that will be used
to paint this trace. |
Set<ITracePainter<?>> |
ITrace2D.setTracePainter(ITracePainter<?> painter)
Replaces all internal trace painters by the new one.
|
Modifier and Type | Method and Description |
---|---|
boolean |
ITrace2D.addTracePainter(ITracePainter<?> painter)
Adds the given trace painter to the internal set of trace painters.
|
boolean |
ITrace2D.containsTracePainter(ITracePainter<?> painter)
Returns true if the given painter is contained in this compound painter.
|
boolean |
ITrace2D.removeTracePainter(ITracePainter<?> painter)
Removes the given trace painter, if it's class is contained and if more
painters are remaining.
|
Set<ITracePainter<?>> |
ITrace2D.setTracePainter(ITracePainter<?> painter)
Replaces all internal trace painters by the new one.
|
Modifier and Type | Class and Description |
---|---|
class |
AErrorBarPolicyConfigurable
A
base
implementation that is configurable by the means of showing positive/negative
errors in x/y dimension. |
class |
ErrorBarPolicyAbsoluteSummation
Configurable
that adds an absolute error (relative to the absolute values) to the points
to render. |
class |
ErrorBarPolicyRelative
Configurable
that adds a relative error (relative to the absolute values) to the points to
render. |
Modifier and Type | Method and Description |
---|---|
Set<ITracePainter<?>> |
Trace2DCandleSticks.getTracePainters() |
Set<ITracePainter<?>> |
ATrace2D.getTracePainters() |
Set<ITracePainter<?>> |
Trace2DDebugger.getTracePainters() |
Set<ITracePainter<?>> |
Trace2DAxisSwap.getTracePainters() |
Set<ITracePainter<?>> |
TraceProxy.getTracePainters() |
Set<ITracePainter<?>> |
Trace2DCandleSticks.setTracePainter(ITracePainter<?> painter) |
Set<ITracePainter<?>> |
ATrace2D.setTracePainter(ITracePainter<?> painter) |
Set<ITracePainter<?>> |
Trace2DDebugger.setTracePainter(ITracePainter<?> painter) |
Set<ITracePainter<?>> |
Trace2DAxisSwap.setTracePainter(ITracePainter<?> painter) |
Set<ITracePainter<?>> |
TraceProxy.setTracePainter(ITracePainter<?> painter) |
Modifier and Type | Method and Description |
---|---|
boolean |
Trace2DCandleSticks.addTracePainter(ITracePainter<?> painter) |
boolean |
ATrace2D.addTracePainter(ITracePainter<?> painter) |
boolean |
Trace2DDebugger.addTracePainter(ITracePainter<?> painter) |
boolean |
Trace2DAxisSwap.addTracePainter(ITracePainter<?> painter) |
boolean |
TraceProxy.addTracePainter(ITracePainter<?> painter) |
boolean |
Trace2DCandleSticks.containsTracePainter(ITracePainter<?> painter) |
boolean |
ATrace2D.containsTracePainter(ITracePainter<?> painter) |
boolean |
Trace2DDebugger.containsTracePainter(ITracePainter<?> painter) |
boolean |
Trace2DAxisSwap.containsTracePainter(ITracePainter<?> painter) |
boolean |
TraceProxy.containsTracePainter(ITracePainter<?> painter) |
boolean |
Trace2DCandleSticks.removeTracePainter(ITracePainter<?> painter) |
boolean |
ATrace2D.removeTracePainter(ITracePainter<?> painter) |
boolean |
Trace2DDebugger.removeTracePainter(ITracePainter<?> painter) |
boolean |
Trace2DAxisSwap.removeTracePainter(ITracePainter<?> painter) |
boolean |
TraceProxy.removeTracePainter(ITracePainter<?> painter) |
Set<ITracePainter<?>> |
Trace2DCandleSticks.setTracePainter(ITracePainter<?> painter) |
Set<ITracePainter<?>> |
ATrace2D.setTracePainter(ITracePainter<?> painter) |
Set<ITracePainter<?>> |
Trace2DDebugger.setTracePainter(ITracePainter<?> painter) |
Set<ITracePainter<?>> |
Trace2DAxisSwap.setTracePainter(ITracePainter<?> painter) |
Set<ITracePainter<?>> |
TraceProxy.setTracePainter(ITracePainter<?> painter) |
Modifier and Type | Class and Description |
---|---|
class |
ATracePainter
A trace painter that adds the service of knowing the previous point that had
to be painted.
|
class |
TracePainterConfigurable<T extends IPointPainterConfigurableUI<T>>
An
implementation that works on a given . |
class |
TracePainterDisc
Renders traces by painting a disc (hollow circle) with choosable diameter for
each
ITracePoint2D to show. |
class |
TracePainterFill
A trace painter that fills the area between trace to render and the x axis
baseline with it's color.
|
class |
TracePainterLine
A trace painter that renders a trace by lines.
|
class |
TracePainterPolyline
A trace painter that increases performance by summing up all points to render
for a paint iteration (submitted by
TracePainterPolyline.paintPoint(int, int, int, int, Graphics, ITracePoint2D) invocations
between TracePainterPolyline.startPaintIteration(Graphics) and
TracePainterPolyline.endPaintIteration(Graphics) ) and only invoking only one polyline
paint for a paint call of the corresponding
Chart2D . |
class |
TracePainterVerticalBar
Renders traces by painting a bar with selectable width for each
ITracePoint2D to show. |
Copyright © 2018. All rights reserved.