| java.lang.Object jcckit.plot.AbstractSymbolFactory
All known Subclasses: jcckit.plot.CircleSymbolFactory, jcckit.plot.SquareSymbolFactory, jcckit.plot.BarFactory,
_size | final protected double _size(Code) | | Size of all symbols.
|
AbstractSymbolFactory | public AbstractSymbolFactory(ConfigParameters config)(Code) | | Creates an instance from the specified configuration parameters.
Key & Default Value | Type | Mandatory |
Description |
size = 0.01 |
double | no |
Size of the symbol in device-independent units. |
attributes |
ConfigParameters | no |
Configuration parameters for the attributes of the symbol.
className has to be a class which is an instance of
GraphicAttributes . |
|
createLegendSymbol | public GraphicalElement createLegendSymbol(GraphPoint centerPosition, double size)(Code) | | Creates a symbol for the legend at the specified position.
Uses
AbstractSymbolFactory.createPlainSymbol createPlainSymbol()
Parameters: centerPosition - Center position of the symbol. Parameters: size - The size of the symbol. Will be ignored because the valuegiven in the constructor will be used. |
createPlainSymbol | abstract protected GraphicalElement createPlainSymbol(GraphPoint centerPosition, double size, GraphicAttributes attributes)(Code) | | Creates the graphical element of the plain symbol.
Parameters: centerPosition - Center position of the symbol. Parameters: size - The size of the symbol. Parameters: attributes - The attributes of the symbol. |
createSymbol | protected Symbol createSymbol(GraphPoint point, GraphicAttributes attributes, Hint hintForNextPoint, Hint hintFromPreviousCurve)(Code) | | Creates a symbol.
Uses
AbstractSymbolFactory.createPlainSymbol createPlainSymbol() .
Parameters: point - Symbol position. Parameters: attributes - Symbol attributes. Parameters: hintForNextPoint - Hint for the next point. Will be deliveredunchanged in the return Symbol object. Parameters: hintFromPreviousCurve - Hint from the previous curve.Will be delivered unchanged in the return Symbol object.Subclasses may override this behavior. |
|
|