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

Class BaseLineConfig

source code

  object --+    
           |    
SeriesConfig --+
               |
              BaseLineConfig
Known Subclasses:

This class contains configuration options for line series such as line and area but not column series.


Authors:
Invient, Richard Lincoln
Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
getPointStart(self)
@return
source code
 
setPointStart(self, pointStart)
If no x values are given for the points in a series, the argument pointStart defines on what value to start.
source code
 
getPointInterval(self)
@return
source code
 
setPointInterval(self, pointInterval)
If no x values are given for the points in a series, the argument pointInterval defines the interval of the x values.
source code
 
getStickyTracking(self)
@return
source code
 
setStickyTracking(self, stickyTracking)
If the argument is true then the mouseout event on a series is not triggered until mouse moves over another series or comes out of the plot area.
source code
 
getMarker(self)
@return
source code
 
setMarker(self, marker)
Sets marker for points of a series
source code
 
getDashStyle(self)
@return
source code
 
setDashStyle(self, dashStyle)
Sets dash style to use when drawing a series.
source code
 
getLineWidth(self)
@return
source code
 
setLineWidth(self, lineWidth)
Sets width of a line
source code

Inherited from SeriesConfig: getAllowPointSelect, getAnimation, getColor, getCursor, getDataLabel, getEnableMouseTracking, getHoverState, getShadow, getShowCheckbox, getShowInLegend, getStacking, getVisible, setAllowPointSelect, setAnimation, setColor, setCursor, setDataLabel, setEnableMouseTracking, setHoverState, setShadow, setShowCheckbox, setShowInLegend, setStacking, setVisible

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

setPointStart(self, pointStart)

source code 

If no x values are given for the points in a series, the argument pointStart defines on what value to start. Defaults to 0. e.g. if a series contains values higher than 2 m $ then sets pointStart to 2,000,000

@param pointStart

setPointInterval(self, pointInterval)

source code 

If no x values are given for the points in a series, the argument pointInterval defines the interval of the x values. For example, if a series contains one value every day then set pointInterval to 24 * 3600 * 1000

@param pointInterval

setStickyTracking(self, stickyTracking)

source code 

If the argument is true then the mouseout event on a series is not triggered until mouse moves over another series or comes out of the plot area. If the argument is true then the mouseout event occurs as soon as mouse leaves area near to the point or marker

@param stickyTracking

setMarker(self, marker)

source code 

Sets marker for points of a series

@param marker

setDashStyle(self, dashStyle)

source code 

Sets dash style to use when drawing a series.

@param dashStyle

setLineWidth(self, lineWidth)

source code 

Sets width of a line

@param lineWidth