R/theme-showtitles.R

Defines functions .theme_showtitles theme_hidetitles theme_showtitles

Documented in theme_hidetitles theme_showtitles

#' Show or Hide the Axis (Apex) Titles
#' 
#' Convenience functions to SHOW or HIDE the apex labels.
#' 
#' @examples
#'  #Load data
#'  data(Feldspar)
#'  ggtern(data=Feldspar,aes(An,Ab,Or)) + geom_point() + theme_bw() + theme_hidetitles()
#' @author Nicholas Hamilton
#' @rdname theme_showtitles
#' @name theme_showtitles
NULL

#' \code{theme_showtitles} is a function that apends to the current theme a flag to switch ON the apex titles.
#' @rdname theme_showtitles
#' @export
theme_showtitles <- function(){.theme_showtitles(TRUE)}

#' \code{theme_hidetitles} or \code{theme_notitles} (alias) is a function that apends to the current 
#' theme a flag to switch OFF the apex titles.
#' @rdname theme_showtitles
#' @export
theme_hidetitles <- function(){.theme_showtitles(FALSE)}

#' @rdname theme_showtitles
#' @export
theme_notitles <- theme_hidetitles

#Internals
.theme_showtitles <- function(show=TRUE){theme(tern.axis.title.show=show)}

Try the ggtern package in your browser

Any scripts or data that you put into this service are public.

ggtern documentation built on June 7, 2023, 6:33 p.m.