ticker_fixed {rbokeh} | R Documentation |
Generate ticks at fixed, explicitly supplied locations.
ticker_fixed(ticks = NULL, num_minor_ticks = 5, clear = FALSE)
ticks |
List of tick locations. |
num_minor_ticks |
The number of minor tick positions to generate between adjacent major tick values. |
clear |
A logical indicating whether all non-specified parameters should be cleared out of any exising specification in the figure. This can be useful when modifying a previously-defined figure. |
figure() %>% ly_points(1:10) %>% x_axis(ticker = ticker_fixed(c(1, 7, 9)))