The Panel is a virtual base class for all iSEE panels. It provides slots and methods to control the height and width of each panel, as well as functionality to control the choice of “transmitting” panels from which to receive a multiple row/column selection.
Slot overview
The following slots are relevant to panel organization:
PanelId
, an integer scalar specifying the identifier for the panel. This should be unique across panels of the same concrete class.PanelWidth
, an integer scalar specifying the width of the panel. Bootstrap coordinates are used so this value should lie between 2 and 12; defaults to 4 ingetPanelDefault
.PanelHeight
, an integer scalar specifying the height of the panel in pixels. This is expected to lie between 400 and 1000; defaults to 500 ingetPanelDefault
.
The following slots are relevant to receiving a multiple selection on the rows:
RowSelectionSource
, a string specifying the name of the transmitting panel from which to receive a multiple row selection (e.g.,"RowDataPlot1"
). Defaults to"---"
.RowSelectionDynamicSource
, a logical scalar indicating whetherx
should dynamically change its selection source for multiple row selections. Defaults toFALSE
ingetPanelDefault
.RowSelectionRestrict
, a logical scalar indicating whether the display ofx
should be restricted to the rows in the multiple selection received from a transmitting panel. Defaults toFALSE
.
The following slots are relevant to receiving a multiple selection on the columns:
ColumnSelectionSource
, a string specifying the name of the transmitting panel from which to receive a multiple column selection (e.g.,"ColumnDataPlot1"
). Defaults to"---"
.ColumnSelectionDynamicSource
, a logical scalar indicating whetherx
should dynamically change its selection source for multiple column selections. Defaults toFALSE
ingetPanelDefault
.ColumnSelectionRestrict
, a logical scalar indicating whether the display ofx
should be restricted to the columns in the multiple selection received from a transmitting panel. Defaults toFALSE
.
There are also the following miscellaneous slots:
SelectionBoxOpen
, a logical scalar indicating whether the selection parameter box should be open at initialization. Defaults toFALSE
.SelectionHistory
, a list of arbitrary elements that contain parameters for saved multiple selections. Each element of this list corresponds to one saved selection in the current panel. Defaults to an empty list.VersionInfo
, a named list of package_version objects specifying the versions of packages used to create a given Panel instance. This information is used to informupdateObject
of any updates that need to be applied. By default, it is filled with a single"iSEE"
entry containing the current version of iSEE.
Getting and setting slots
In all of the following code chunks, x
is an instance of a Panel,
and i
is a string containing the slot name:
x[[i]]
returns the value of a slot namedi
.x[[i]] <- value
modifiesx
so that the value in sloti
is replaced withvalue
.show(x)
will print a summary of all (non-hidden) slots and their values.
Supported methods
In the following code snippets, x
is an instance of a ColumnDotPlot class.
Refer to the documentation for each method for more details on the remaining arguments.
For setting up data values:
.refineParameters(x, se)
callsupdateObject(x)
. Ifx
is up to date, this operation is a no-op and returnsx
without modification..cacheCommonInfo(x, se)
is a no-op, returningse
without modification.
For defining the interface:
.defineInterface(x, se, select_info)
will return a list of collapsible boxes for changing data and selection parameters. The data parameter box will be populated based on.defineDataInterface
..defineDataInterface(x, se, select_info)
will return an empty list..hideInterface(x, field)
will always returnFALSE
.
For monitoring reactive expressions:
.createObservers(x, se, input, session, pObjects, rObjects)
will add observers to respond to changes in multiple selection options. It will also call.singleSelectionSlots(x)
to set up observers for responding to transmitted single selections..renderOutput(x, se, output, pObjects, rObjects)
will add elements tooutput
for rendering the information textboxes at the bottom of each panel. Each panel should specialize this method to add rendering expressions for the actual output (e.g., plots, tables), followed by acallNextMethod
to create the textboxes.
For generating output:
.exportOutput(x, se, all_memory, all_contents)
is a no-op, i.e., it will return an empty character vector and create no files.
For documentation:
.definePanelTour(x)
returns a data.frame containing the selection-related steps of the tour.
For controlling selections:
.multiSelectionRestricted(x)
will always returnTRUE
..multiSelectionDimension(x)
will always return"none"
..multiSelectionActive(x)
will always returnNULL
..multiSelectionClear(x)
will always returnx
..multiSelectionInvalidated(x)
will always returnFALSE
..multiSelectionAvailable(x, contents)
will returnnrow(contents)
..singleSelectionDimension(x)
will always return"none"
..singleSelectionValue(x)
will always returnNULL
..singleSelectionSlots(x)
will always return an empty list.