Timeline
Set timeline options
e_timeline_opts(e, axis_type = "category", ...) e_timeline_serie(e, ..., index = 1) e_timeline_on_serie(e, ..., serie_index)
e |
An |
axis_type |
Type of axis, |
... |
Named options. |
index |
The index of the element to apply options to, see examples. |
serie_index |
The index of the serie to add elements to. |
e_timeline_opts
: Pass general timeline options, see official documentation.
e_timeline_serie
: Pass options to each serie, each options must be a vector or list the same length as their are steps, see examples.
e_timeline_make
: Helper function that wraps your data and e_timeline_serie
to dynamically add options to series.
# general options iris %>% group_by(Species) %>% e_charts(Sepal.Length, timeline = TRUE) %>% e_line(Sepal.Width) %>% e_timeline_opts( autoPlay = TRUE, rewind = TRUE ) # serie options iris %>% group_by(Species) %>% e_charts(Sepal.Length, timeline = TRUE) %>% e_line(Sepal.Width) %>% e_timeline_serie( title = list( list(text = "setosa"), list(text = "versicolor"), list(text = "virginica") ) )
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.