lets_plot.element_line¶
- lets_plot.element_line(color=None, size=None, blank=False) dict ¶
Specify how non-data components of the plot are drawn. This theme element draws lines.
- Parameters
- colorstr
Line color.
- sizeint
Line size.
- blankbool, default=False
If True - draws nothing, and assigns no space.
- Returns
- dict
Theme element specification.
Examples
1import numpy as np 2from lets_plot import * 3LetsPlot.setup_html() 4np.random.seed(42) 5data = {'x': np.random.normal(size=1000)} 6ggplot(data, aes(x='x')) + geom_histogram() + \ 7 theme(panel_grid=element_line(size=3))