PivotHtmlRenderer | R Documentation |
The 'PivotHtmlRenderer' class creates a HTML representation of a pivot table.
R6Class
object.
new()
Create a new 'PivotHtmlRenderer' object.
PivotHtmlRenderer$new(parentPivot)
parentPivot
The pivot table that this 'PivotHtmlRenderer' instance belongs to.
A new 'PivotHtmlRenderer' object.
clearIsRenderedFlags()
An internal method used when rendering a pivot table to HTML. Clear the IsRendered flags that exist on the 'PivotDataGroup' class.
PivotHtmlRenderer$clearIsRenderedFlags()
No return value.
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.
A list containing HTML tags from the 'htmltools' package. Convert this to a character variable using 'as.character()'.
clone()
The objects of this class are cloneable with this method.
PivotHtmlRenderer$clone(deep = FALSE)
deep
Whether to make a deep clone.
# This class should only be created by the pivot table.
# It is not intended to be created outside of the pivot table.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.