The `PivotHtmlRenderer` class creates a HTML representation of a pivot table.
R6Class
object.
clearIsRenderedFlags()
An internal method used when rendering a pivot table to HTML. Clear the IsRendered flags that exist on the `PivotDataGroup` class.
getTableHtml()
Generate a HTML representation of the pivot table, optionally including additional detail for debugging purposes.
PivotHtmlRenderer$getTableHtml(
styleNamePrefix = NULL,
includeHeaderValues = FALSE,
includeRCFilters = FALSE,
includeCalculationFilters = FALSE,
includeWorkingData = FALSE,
includeEvaluationFilters = FALSE,
includeCalculationNames = FALSE,
includeRawValue = FALSE,
includeTotalInfo = FALSE,
exportOptions = NULL,
showRowGroupHeaders = FALSE
)
styleNamePrefix
A character variable specifying a prefix for all named CSS styles, to avoid style name collisions where multiple pivot tables exist.
includeHeaderValues
Default `FALSE`, specify `TRUE` to render this debug information.
includeRCFilters
Default `FALSE`, specify `TRUE` to render this debug information.
includeCalculationFilters
Default `FALSE`, specify `TRUE` to render this debug information.
includeWorkingData
Default `FALSE`, specify `TRUE` to render this debug information.
includeEvaluationFilters
Default `FALSE`, specify `TRUE` to render this debug information.
includeCalculationNames
Default `FALSE`, specify `TRUE` to render this debug information.
includeRawValue
Default `FALSE`, specify `TRUE` to render this debug information.
includeTotalInfo
Default `FALSE`, specify `TRUE` to render this debug information.
exportOptions
A list of additional export options - see the "A1. Appendix" for details.
showRowGroupHeaders
Default `FALSE`, specify `TRUE` to render the row group headings. See the "Data Groups" vignette for details.
# This class should only be created by the pivot table.
# It is not intended to be created outside of the pivot table.