| grid | R Documentation |
Modify grid and line elements on both x and y axis
grid(c3, axis, show = TRUE, lines = NULL, ticks = NULL, ...) ## S3 method for class 'c3' grid(c3, axis, show = TRUE, lines = NULL, ticks = NULL, ...)
c3 |
c3 htmlwidget object |
axis |
character 'x' or 'y' |
show |
boolean |
lines |
dataframe with options:
|
ticks |
boolean placeholder. Not yet implemented in C3.js |
... |
additional options passed to the grid object |
c3
Other c3: RColorBrewer, c3,
legend, region,
subchart, tooltip,
xAxis, zoom
iris %>%
c3(x = 'Sepal_Length', y = 'Sepal_Width', group = 'Species') %>%
c3_scatter() %>%
grid('y') %>%
grid('x', show = FALSE, lines = data.frame(value=c(5, 6),
text= c('Line 1', 'Line 2')))