Skip to contents

Sets the title rendered inside the myIO widget SVG.

Usage

setTitle(myIO, title = NULL)

Arguments

myIO

A myIO widget object.

title

Character title or NULL to remove the title.

Value

A modified myIO htmlwidget object.

Examples

myIO() |>
  setTitle("Miles per gallon") |>
  addIoLayer("point", label = "cars",
             data = mtcars,
             mapping = list(x_var = "wt", y_var = "mpg"))