e_color: Color

View source: R/color.R

e_colorR Documentation

Color

Description

Customise chart and background colors.

Usage

e_color(e, color = NULL, background = NULL, append = TRUE)

## S3 method for class 'echarts4r'
e_color(e, color = NULL, background = NULL, append = TRUE)

## S3 method for class 'echarts4rProxy'
e_color(e, color = NULL, background = NULL, append = TRUE)

Arguments

e

An echarts4r object as returned by e_charts or a proxy as returned by echarts4rProxy.

color

Vector of colors.

background

Background color.

append

Only applicable to 'echarts4rProxy'. Whether to append the 'color' to the existing array (vector) or colors or to replace it.

See Also

e_theme, Official color documentation, Official background documentation

Examples

mtcars |>
  e_charts(drat) |>
  e_line(mpg) |>
  e_area(qsec) |>
  e_color(
    c("red", "blue"),
    "#d3d3d3"
  )

JohnCoene/echarts4r documentation built on Feb. 23, 2024, 9:21 a.m.