Package muntjac :: Package addon :: Package invient :: Module invient_charts_config :: Class SymbolMarker
[hide private]
[frames] | no frames]

Class SymbolMarker

source code

object --+        
         |        
    Marker --+    
             |    
AbstractMarker --+
                 |
                SymbolMarker

This marker has predefined shape which cannot be changed. However, marker attributes can be set.


Authors:
Invient, Richard Lincoln
Instance Methods [hide private]
 
__init__(self, *args)
Creates this marker with enabled = true --- Creates this marker with specified arguments.
source code
 
getLineColor(self) source code
 
setLineColor(self, lineColor)
Sets color of the point marker's outline
source code
 
getFillColor(self) source code
 
setFillColor(self, fillColor)
Sets color of the point marker
source code
 
getLineWidth(self) source code
 
setLineWidth(self, lineWidth)
Sets width of the point marker outline
source code
 
getRadius(self) source code
 
setRadius(self, radius)
Sets radius of the point marker
source code
 
getSymbol(self) source code
 
setSymbol(self, symbol)
Sets symbol for the point marker.
source code
 
getHoverState(self) source code
 
setHoverState(self, hoverState)
Sets marker to be applied to a point when it is hovered.
source code
 
getSelectState(self) source code
 
setSelectState(self, selectState)
Sets marker to be applied to a point when it is selected.
source code
 
__str__(self)
str(x)
source code

Inherited from AbstractMarker: getEnabled, setEnabled

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, *args)
(Constructor)

source code 
Creates this marker with enabled = true
---
Creates this marker with specified arguments.

@param enabled
           If false then this marker will not be applied to a point.
           What this means is that the data points of a line chart
           will not stand out.
---
Creates this marker with specified arguments.

@param lineColor
           - Color of the point marker's outline
---
Creates this marker with specified arguments.

@param radius
           Radius of the point marker.
---
Creates this marker with specified arguments.

@param symbol
           It must be one of the predefine symbol such as
           Symbol.CIRCLE or Symbol.DIAMOND
---
Creates this marker with specified arguments.

@param lineColor
           Color of the point marker's outline
@param radius
           Radius of the point marker.
---
Creates this marker with specified arguments.

@param lineColor
           - Color of the point marker's outline
@param radius
           Radius of the point marker.
@param symbol
           It must be one of the predefine symbol such as
           Symbol.CIRCLE or Symbol.DIAMOND

Overrides: object.__init__

getLineColor(self)

source code 
Overrides: AbstractMarker.getLineColor

setLineColor(self, lineColor)

source code 

Sets color of the point marker's outline

Overrides: AbstractMarker.setLineColor

getFillColor(self)

source code 
Overrides: AbstractMarker.getFillColor

setFillColor(self, fillColor)

source code 

Sets color of the point marker

Overrides: AbstractMarker.setFillColor

getLineWidth(self)

source code 
Overrides: AbstractMarker.getLineWidth

setLineWidth(self, lineWidth)

source code 

Sets width of the point marker outline

Overrides: AbstractMarker.setLineWidth

getRadius(self)

source code 
Overrides: AbstractMarker.getRadius

setRadius(self, radius)

source code 

Sets radius of the point marker

Overrides: AbstractMarker.setRadius

setSymbol(self, symbol)

source code 

Sets symbol for the point marker. It must be one of the predefine symbol such as Symbol.CIRCLE or Symbol.DIAMOND

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)