Learn R Programming

echarts4r (version 0.2.0)

e_single_axis: Single Axis

Description

Setup single axis.

Usage

e_single_axis(e, index = 0, ...)

Arguments

e

An echarts4r object as returned by e_charts.

index

Index of axis to customise.

...

Any other option to pass, check See Also section.

Examples

Run this code
# NOT RUN {
df <- data.frame(
  axis = LETTERS[1:10],
  value = runif(10, 3, 20),
  size = runif(10, 3, 20)
)

df %>% 
  e_charts(axis) %>% 
  e_single_axis() %>% # add the single axis
  e_scatter(
    value,
    size, 
    coord.system = "singleAxis"
  ) 

# }

Run the code above in your browser using DataLab