We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ExportConfiguration$savePlot()
Especiall the format field, which is by default NULL, should be initalized with something meaningful.
format
NULL
The text was updated successfully, but these errors were encountered:
it seems that format is completely ignored, and output device is determined by the file name??
> exportConfig$savePlot(gridPlot, fileName = "All plots") Error in `plot_dev()`: ! Unknown graphics device '' Backtrace: 1. exportConfig$savePlot(gridPlot, fileName = "All plots") 2. ggplot2::ggsave(...) at TLF-Library/R/plotconfiguration-export.R:84:6 3. ggplot2:::plot_dev(device, filename, dpi = dpi)
Using .png extension in file name works:
.png
> exportConfig$savePlot(gridPlot, fileName = "All plots.png") >
I think file name must not come with the extension.
Sorry, something went wrong.
No branches or pull requests
Especiall the
format
field, which is by defaultNULL
, should be initalized with something meaningful.The text was updated successfully, but these errors were encountered: