It uses Grid Graphics (package grid
) to Convert a flextable
into a grob object with scaling and text wrapping capabilities.
This method can be used to insert a flextable inside a ggplot2
plot,
it can also be used with package 'patchwork' or 'cowplot' to combine
ggplots and flextables into the same graphic.
User can vary the size of the elements according to the size of the graphic window. The text behavior is controllable, user can decide to make the paragraphs (texts and images) distribute themselves correctly in the available space of the cell. It is possible to define resizing options, for example by using only the width, or by distributing the content so that it occupies the whole graphic space. It is also possible to freeze or not the size of the columns.
It is not recommended to use this function for large tables because the calculations can be long.
Limitations: equations (see as_equation()
) and hyperlinks (see hyperlink_ftext()
)
will not be displayed.
gen_grob(
x,
...,
fit = c("auto", "width", "fixed"),
scaling = c("min", "full", "fixed"),
wrapping = TRUE,
autowidths = TRUE,
just = NULL
)
a grob (gTree) object made with package grid
A flextable object
Reserved for extra arguments
Determines the fitting/scaling of the grob on its parent viewport.
One of auto
, width
, fixed
, TRUE
, FALSE
:
auto
or TRUE
(default): The grob is resized to fit in the parent viewport.
The table row heights and column widths are resized proportionally.
width
: The grob is resized horizontally to fit the width
of the parent viewport. The column widths are resized proportionally.
The row heights are unaffected and the table height may be smaller or larger
than the height of the parent viewport.
fixed
or FALSE
: The grob will have fixed dimensions,
as determined by the column widths and the row heights.
Determines the scaling of the table contents.
One of min
, full
, fixed
, TRUE
, FALSE
:
min
or TRUE
(default):
When the parent viewport is smaller than the necessary,
the various content sizes (text font size, line width and image dimensions)
will decrease accordingly so that the content can still fit.
When the parent viewport is larger than the necessary,
the content sizes will remain the same, they will not increase.
full
: Same as min
, except that the content sizes are scaled fully,
they will increase or decrease, according to the size of the drawing surface.
fixed
or FALSE
: The content sizes will not be scaled.
Determines the soft wrapping (line breaking) method
for the table cell contents. One of TRUE
, FALSE
:
TRUE
: Text content may wrap into separate lines at normal word break points
(such as a space or tab character between two words) or at newline characters
anywhere in the text content. If a word does not fit in the available cell width,
then the text content may wrap at any character.
Non-text content (such as images) is also wrapped into new lines,
according to the available cell width.
FALSE
: Text content may wrap only with a newline character.
Non-text content is not wrapped.
Superscript and subscript chunks do not wrap. Newline and tab characters are removed from these chunk types.
If TRUE
(default) the column widths are adjusted
in order to fit the contents of the cells (taking into account the wrapping
setting).
Justification of viewport layout,
same as just
argument in grid::grid.layout()
.
When set to NULL
(default), it is determined according to the fit
argument.
The size of the flextable can be known by using the method dim on the grob.
Other flextable print function:
as_raster()
,
df_printer()
,
flextable_to_rmd()
,
htmltools_value()
,
knit_print.flextable()
,
plot.flextable()
,
print.flextable()
,
save_as_docx()
,
save_as_html()
,
save_as_image()
,
save_as_pptx()
,
save_as_rtf()
,
to_html.flextable()
ft <- flextable(head(mtcars))
ft <- autofit(ft)
gr <- gen_grob(ft)
used_family <- get_flextable_defaults()$font.family
if (gdtools::font_family_exists(used_family) &&
require("ragg")) {
png_f <- tempfile(fileext = ".png")
# get the size
dims <- dim(gr)
dims
ragg::agg_png(filename = png_f, width = dims$width + .1,
height = dims$height + .1, units = "in", res = 150)
plot(gr)
dev.off()
}
Run the code above in your browser using DataLab