ChartPlot
is an extensible class that registers a plot area in the Charts
visualizer. Each of the three panels in the screenshot of the Charts
visualizer to the right corresponds to an instantiated subclass of ChartPlot
. Overridden methods may take a variety of kwargs from Charts.addPlot()
to support custom uses. It may plot current model data (as the BarChart
does), or visualize other aspects of the model state (as NetworkPlot
does).
This class should be subclassed, and cannot be drawn by itself. At minimum, subclasses must implement the launch()
, update()
, and draw()
methods, specify the type
property, and maintain the axes
property after launch in order to be drawn properly in the Charts
figure.
Subclasses of ChartPlot
can be passed to Charts.addPlotType()
, and then added to the visualization with Charts.addPlot()
. See the Visualization Tutorial Notebook for a guide to subclassing ChartPlot.
Methods
Click a method name for more detailed documentation.
active( val, updateGUI )
Turns on or off the selected state of a plot in the control panel.
draw( t, forceUpdate )
Updates the
axes
object for display on the visualizer. This function is called afterChartPlot.update()
when the visualizer receives new data, and when scrubbing the time bar. Theupdate()
method, therefore, should be used to store model data by time, which can then be used bydraw()
.Charts will refresh the entire canvas after updating each of the individual plots, so there is no need to refresh the canvas manually here unless it is desired to redraw the graph out of sync (e.g. if the subclass provides for interactivity and the plot should update while the model is paused).
Subclasses should call
super().draw(t, forceUpdate)
at the end of the function.MPLEvent( event )
An event handling method that can be overridden in subclasses to catch pick (
pick_event
), keypress (key_press_event
), and mouse click (button_press_event
) events that occur inside a particular plot. This is distinct from functions passed toMPLVisualization.addKeypress()
, as those will run for keys pressed any time the visualization window is in focus, regardless of the mouse position.For example, pressing 'l' with the mouse over a
AgentsPlot
will rotate the layout. The key pressed can be accessed withevent.key
.This function should not be called by user code, but it may be defined in subclasses of
ChartPlot
.event.canvas.draw_idle()
should be called at the end if the plot needs to be refreshed following the event. See the Matplotlib events documentation for more on interacting with theevent
object.update( data, t )
Receives current model data and stores it for future scrubbing.
Note that this function is called when the visualizer receives new data from the model. Because
ChartPlot.draw()
is called both afterChartPlot.update()
and when the time bar is scrubbed, drawing code should be put inChartPlot.draw()
and not here, unless there is code to be run only in the event of new data that should not be run when scrubbing (e.g. calculating new plot bounds).If the visualizer needs model properties besides the current data, the model object can be accessed with
self.viz.model
.This function should not typically be called from user code, though it can be for out-of-sync plot updates when interacting with a plot. See the
agentClick
hook for an example.launch( axes )
Initial code to set up
ChartPlot.axes
whenCharts
launches the visualization window. Subclasses should callsuper().launch()
at the beginning of the method. This function should not be called from user code.
Object Properties
type — str
A short identifying string, to be used in the
type
argument ofCharts.addPlot()
.name — str
A short name, used to refer back to the plot afterward.
label — str
The title of the chart, displayed above it in the visualizer.
axes — matplotlib.AxesSubplot
The
AxesSubplot
object to be drawn to the plot area. The object is created onCharts.launch()
and passed toChartPlot.launch()
, where it must be stored subsequently.projection — str
The Matplotlib coordinate projection to use.
None
defaults to'rectilinear'
, but other projections available by default are'polar'
,'3d'
,'aitoff'
,'hammer'
,'lambert'
, and'mollweide'
. Custom Matplotlib projection objects can also be passed to this argument.Initial value: None
viz — Charts
The parent
Charts
visualizer object.selected — bool
Whether the plot is currently queued for display. Do not modify this property directly; use
ChartPlot.active()
to ensure consistency with the GUI state.
Notes and Examples