Package Vision :: Module matplotlibNodes :: Class BarNE
[hide private]
[frames] | no frames]

Class BarNE

source code

                             object --+                        
                                      |                        
NetworkEditor.itemBase.NetworkItemsBase --+                    
                                          |                    
        NetworkEditor.itemBase.NetworkItems --+                
                                              |                
            NetworkEditor.items.NetworkNodeBase --+            
                                                  |            
                    NetworkEditor.items.NetworkNode --+        
                                                      |        
                                              MPLBaseNE --+    
                                                          |    
                                            MPLPlottingNode --+
                                                              |
                                                             BarNE

Plots a horizontal bar plot with rectangles bounded by
left, left+width, bottom, bottom+height  (left, right, bottom and top edges)
bottom, width, height, and left can be either scalars or sequences
input:
     height      -   the heights (thicknesses) of the bars
    left        -   the x coordinates of the left edges of the bars
    
Optional arguments:
    bottom      -   can be either scalars or sequences
    width       -   can be either scalars or sequences
    color       -    specifies the colors of the bars
    edgecolor   -    specifies the colors of the bar edges
    xerr        -    if not None, will be used to generate errorbars
                    on the bar chart
    yerr        -    if not None, will be used to generate errorbars
                    on the bar chart
    ecolor      -   specifies the color of any errorbar
    capsize     -       determines the length in points of the error bar caps
    align       - 'edge' | 'center'
                  'edge' aligns the horizontal bars by their bottom edges in bottom, while
                  'center' interprets these values as the y coordinates of the bar centers.
Return value is a list of Rectangle patch instances



Instance Methods [hide private]
  __init__(self, name='Bar', **kw)

Inherited from MPLPlottingNode: afterAddingToNetwork, setDrawAreaDef

Inherited from MPLBaseNE: beforeRemovingFromNetwork, onlyDataChanged, setDrawArea

Inherited from NetworkEditor.items.NetworkNode: addInputPort, addOutputPort, addSpecialPorts, buildNodeIcon, buildSmallIcon, deletePort, deletePortByName, deleteSmallIcon, deselect, editorVisible, getColor, getFont, hideSpecialPorts, isExpanded, refreshInputPortData, resizeIcon, select, setColor, setFont, setModifiedTag, setProgressBar, showSpecialPorts, updatePosXPosY

Inherited from NetworkEditor.items.NetworkNodeBase: addSaveNodeMenuEntries, autoResize, autoResizeX, autoResizeY, buildIcons, checkIfNodeForSavingIsDefined, compareToOrigNodeDescr, computeFunction, configure, cut_cb, delete_cb, edit, editComputeFunction_cb, evalString, getAfterConnectionsSourceCode, getComputeFunctionSourceCode, getConnections, getDescr, getHeaderBlock, getInConnections, getInitBlock, getInputPortByName, getNodeDefinitionSourceCode, getNodeSourceCode, getNodeSourceCodeForDoit, getNodeSourceCodeForInstanciation, getNodeSourceCodeForModifications, getNodeSourceCodeForNode, getNodeSourceCodeForPorts, getNodeSourceCodeForWidgetValue, getNodeSourceCodeForWidgets, getOutConnections, getOutputPortByName, getOutputPortByType, getPortsCreationSourceCode, getSize, getSourceCode, getSpecialInputPortByName, getSpecialOutputPortByName, getStateDefinitionCode, getUniqueNodeName, getWidgetByName, getWidgetsCreationSourceCode, getWidgetsForMaster, getWidthForLabel, getWidthForNodeWidgets, getWidthForPorts, growDown, growRight, hideInNodeWidgets, isMacro, isModified, ischild, move, moveSelectedNodeEnd, outputData, rename, resetModifiedTag, resetTags, safeName, saveSource, saveSource_cb, schedule, scheduleChildren, schedule_cb, setFunction, showInNodeWidgets, startMoveOneNode, toggleNodeExpand_cb, toggleParamPanel_cb, updateCode

Inherited from NetworkEditor.itemBase.NetworkItems: __repr__, afterRemovingFromNetwork, beforeAddingToNetwork, deleteIcon, editNodeMenu, freeze, gettags, hideParamPanel, highlight, introspect, postItemMenu, run, toggleAutoRun_cb, toggleFrozen_cb, unfreeze, unhighlight

Inherited from NetworkEditor.itemBase.NetworkItems (private): _introspectCB

Inherited from NetworkEditor.itemBase.NetworkItemsBase: delEditor, getEditor, setEditor

Inherited from NetworkEditor.itemBase.NetworkItemsBase (private): _setModified, _setOriginal

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __str__


Class Variables [hide private]

Inherited from MPLPlottingNode: codeBeforeDisconnect


Properties [hide private]

Inherited from NetworkEditor.itemBase.NetworkItemsBase: editor

Inherited from object: __class__


Method Details [hide private]

__init__(self, name='Bar', **kw)
(Constructor)

source code 
None
Overrides: MPLBaseNE.__init__