Learn R Programming

echarts4r (version 0.1.1)

e_angle_axis: Angle axis

Description

Customise angle axis.

Usage

e_angle_axis(e, show = TRUE, ...)

Arguments

e

An echarts4r object as returned by e_charts.

show

Whether to display the axis.

...

Any other option to pass, check See Also section.

See Also

https://ecomfe.github.io/echarts-doc/public/en/option.html#angleAxis

Examples

Run this code
# NOT RUN {
df <- data.frame(x = 1:100, y = seq(1, 200, by = 2))

df %>% 
  e_charts(x) %>% 
  e_polar(FALSE) %>% 
  e_angle_axis(FALSE) %>% 
  e_radius_axis(FALSE) %>% 
  e_line(y, coord.system = "polar", smooth = TRUE) %>% 
  e_legend(show = FALSE)

# }

Run the code above in your browser using DataLab