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
)styleNamePrefixA character variable specifying a prefix for all named CSS styles, to avoid style name collisions where multiple pivot tables exist.
includeHeaderValuesDefault `FALSE`, specify `TRUE` to render this debug information.
includeRCFiltersDefault `FALSE`, specify `TRUE` to render this debug information.
includeCalculationFiltersDefault `FALSE`, specify `TRUE` to render this debug information.
includeWorkingDataDefault `FALSE`, specify `TRUE` to render this debug information.
includeEvaluationFiltersDefault `FALSE`, specify `TRUE` to render this debug information.
includeCalculationNamesDefault `FALSE`, specify `TRUE` to render this debug information.
includeRawValueDefault `FALSE`, specify `TRUE` to render this debug information.
includeTotalInfoDefault `FALSE`, specify `TRUE` to render this debug information.
exportOptionsA list of additional export options - see the "A1. Appendix" for details.
showRowGroupHeadersDefault `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.