chart_labels: Modify axis and plot labels

View source: R/chart_labels.R

chart_labelsR Documentation

Modify axis and plot labels

Description

Add labels to a chart, labels can be specified for x axis, y axis and plot.

Usage

chart_labels(x, title = NULL, xlab = NULL, ylab = NULL)

Arguments

x

an ms_chart object.

title

title of the chart (displayed above the plot area). Use NULL to remove it.

xlab

label for the x axis. Use NULL to remove it.

ylab

label for the y axis. Use NULL to remove it.

Value

An ms_chart object.

See Also

chart_data_labels(), chart_ax_x(), chart_ax_y()

Examples

mylc <- ms_linechart(
  data = browser_ts, x = "date", y = "freq",
  group = "browser"
)
mylc <- chart_labels(mylc,
  title = "my title", xlab = "my x label",
  ylab = "my y label"
)

mschart documentation built on May 17, 2026, 1:09 a.m.