Skip to contents

Renders only the output panel showing information about the clicked or brushed cell(s) (e.g. row/column names and value), via InteractiveComplexHeatmap::HeatmapInfoOutput(). See ComplexHeatmap_HeatmapMainOutputUI() for how the separated output pieces fit together.

Usage

ComplexHeatmap_HeatmapInfoOutputUI(id, title = NULL, width = 400, ...)

Arguments

id

The ID for the Shiny module. Must match the id used for ComplexHeatmap_HeatmapServer() and any other output pieces for the same heatmap.

title

Optional panel title. NULL (the default) omits the title.

width

Panel width in pixels.

...

Additional arguments passed to InteractiveComplexHeatmap::HeatmapInfoOutput().

Value

A Shiny UI object for the click/brush info panel.

Author

Jacob Martin

Examples

library(VizModules)
ComplexHeatmap_HeatmapInfoOutputUI("heatmap", title = "Details")
#> <div id="heatmap_Heatmap_output_wrapper" style="width: 400px">
#>   <h5>Details</h5>
#>   <div id="heatmap_Heatmap_info" class="shiny-html-output"></div>
#> </div>