Nothing
#' 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)}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.