- data
data.frame with data to use in the chart.
- categorical
List of list (one for each data column) containing the name of available categories,
or NULL if column corresponds to continuous data;
NULL is allowed, meaning all columns are continuous.
A named list can also be provided to only indicate which columns are categorical,
associating a column name to available categories.
- categoriesRep
Within a category column, the height assigned to each category can either be:
- arrangeMethod
Within a category box:
the position of lines can be calculated to minimize
crossings on the left of the box (fromLeft);
the position of lines can be calculated to minimize
crossings on the right (fromRight, default behavior);
lines can be split in two points to minimize
crossings on the left and on the right (fromBoth).
To turn this ordering off (for example for performance reasons),
arrangeMethod can also be set to fromNone.
- inputColumns
List of boolean (one for each data column),
TRUE for an input column, FALSE for an output column;
NULL is allowed, meaning all columns are inputs.
A list of column names can also be provided to only indicate which columns are inputs.
- keptColumns
List of boolean (one for each data column), FALSE if column has to be ignored;
NULL is allowed, meaning all columns are available.
A list of column names can also be provided
to only indicate which columns are to be kept.
- histoVisibility
List of boolean (one for each data column), TRUE if an histogram must be displayed;
NULL is allowed, meaning no histogram must be displayed.
A list of column names can also be provided
to only indicate which columns must have an histogram displayed.
- invertedAxes
List of boolean (one for each data column), TRUE if orientation of axis must be inverted;
NULL is allowed, meaning no axis must be inverted.
A list of column names can also be provided
to only indicate which columns must have an inverted axis.
- cutoffs
List of list (one for each data column) of list (one for each cutoff)
containing two values (min and max values defining the cutoff)
or NULL if there is no cutoff to apply;
NULL is allowed, meaning all columns are without cutoff.
A named list can also be provided to only indicate which columns have cutoffs,
associating a column name to its cutoffs.
- refRowIndex
Index of the sample row which has to appear horizontal;
NULL is allowed, meaning there is no row to use as reference.
- refColumnDim
Name of the reference column (used to determine the color to attribute to a row);
NULL is allowed, meaning there is no coloring to apply.
- rotateTitle
TRUE if column title must be rotated.
- columnLabels
List of string (one for each data column) to display in place of column name found in data,
or NULL if there is no alternative name;
NULL is allowed, meaning all columns are without alternative name;
<br> can be used to insert line breaks.
- continuousCS
Name of the color Scale to use for continuous data;
supported names: Viridis, Inferno, Magma, Plasma, Warm, Cool, Rainbow,
CubehelixDefault, Blues,Greens, Greys, Oranges, Purples, Reds, BuGn,
BuPu, GnBu, OrRd, PuBuGn,PuBu, PuRd, RdBu, RdPu, YlGnBu, YlGn,
YlOrBr, YlOrRd;
default value is Viridis.
- categoricalCS
Name of the color Scale to use for categorical data;
supported names: Category10, Accent, Dark2, Paired, Set1;
default value is Category10.
- eventInputId
When plot event occurred, reactive input to write to;
NULL is allowed, meaning no event is sent.
An event is a list with two named elements 'type' and 'value'.
If type is equal to cutoffChange:
value$adjusting is TRUE when pointer is moving, changing a cutoff;
value$updatedDim is the name of last cut column;
value$selectedTraces gives the indexes of uncut rows;
value$cutoffs gives the new values for the cutoffs.
If type is equal to axeOrientationChange:
If type is equal to refColumnDimChange:
If type is equal to rowClicked:
If type is equal to pointChange:
value$dim defines the column of the edited point;
value$rowIndex defines the row of the edited point;
value$newValue gives the new value for the edited point.
- editionMode
Supported edition modes: EditionOff, EditionOnDrag, EditionOnDragEnd;
default value is EditionOff .
- controlWidgets
Tells if some widgets must be available to control plot;
NULL is allowed, meaning that !HTMLWidgets.shinyMode is to use;
default value is FALSE.
- cssRules
CSS rules to add.
Must be a named list of the form list(selector = declarations), where selector
is a valid CSS selector and declarations is a string or vector of declarations.
- sliderPosition
Set initial position of slider, specifying which columns interval is visible.
Default value is NULL which is equivalent to:
list(
dimCount = 8,
startingDimIndex = 1
)
- width
Integer in pixels defining the width of the widget.
- height
Integer in pixels defining the height of the widget.
- elementId
Unique CSS selector id for the widget.