Learn R Programming

echarts4r (version 0.2.0)

radius_axis: Radius axis

Description

Customise radius axis.

Usage

e_radius_axis(e, serie, show = TRUE, ...)

e_radius_axis_(e, serie = NULL, show = TRUE, ...)

Arguments

e

An echarts4r object as returned by e_charts.

serie

Serie to use as axis labels.

show

Whether to display the axis.

...

Any other option to pass, check See Also section.

See Also

Additional arguments

Examples

Run this code
# NOT RUN {
df <- data.frame(x = LETTERS[1:10], y = seq(1, 20, by = 2))

df %>% 
  e_charts(x) %>% 
  e_polar() %>% 
  e_angle_axis() %>% 
  e_radius_axis(x) %>% 
  e_bar(y, coord.system = "polar") 

# }

Run the code above in your browser using DataLab