Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: statgl
Title: Statistics Greenland R Package
Version: 0.5.2.9001
Version: 0.5.2.9002
Authors@R: c(
person("Emil", "Malta", , "emim@stat.gl", role = c("aut", "cre")),
person("Alexander", "Krabbe", , "alkr@stat.gl", role = "aut")
Expand Down
7 changes: 3 additions & 4 deletions R/statgl_plot.R
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,9 @@
#' [highcharter::hc_title()], [highcharter::hc_subtitle()] and
#' [highcharter::hc_caption()]. Titles and subtitles are left-aligned;
#' captions are right-aligned.
#' @param show_last_value Logical; defaults `FALSE`. If `TRUE`, adds data labels
#' @param show_last_value Logical; defaults `TRUE`. Adds data labels
#' for the final point of each `"line"`, `"spline"` and `"area"` series, or
#' for all
#' bars in `"bar"` / `"column"` charts.
#' for all bars in `"bar"` / `"column"` charts.
#' @param xlab,ylab Axis labels. If `NULL` or `""`, no axis title is shown and
#' any automatic titles inferred by [highcharter::hchart()] are disabled.
#' @param tooltip Optional JavaScript string passed to
Expand Down Expand Up @@ -152,7 +151,7 @@ statgl_plot <- function(
title = NULL,
subtitle = NULL,
caption = NULL,
show_last_value = FALSE,
show_last_value = TRUE,
xlab = NULL,
ylab = NULL,
tooltip = NULL,
Expand Down
Loading