lets-plot
lets-plot copied to clipboard
Multiplatform plotting library based on the Grammar of Graphics
Is there any way to achieve a gradient in the filling of an area chart?  I have not been able to find anything in the docs. If not, how...
Code: ```python from lets_plot import * LetsPlot.setup_html() gggrid([ ggplot() + geom_blank() + ggtitle("Blank Plot #1"), ggplot() + geom_blank() + ggtitle("Blank Plot #2") ]) \ + ggtitle("Grid Plot") \ + theme(plot_title="blank")...
``` from datetime import datetime, timedelta, timezone import numpy as np import pandas as pd from lets_plot import * LetsPlot.setup_html() def squiggle(x): return np.sin(3*x) / (x * (np.cos(x) + 2))...
Hi all first of all did not find an issue template - so bear with me if the format is wrong. I discovered an interesting behavior when working with the...
If the legend has several rows/columns and the labels have different length/heights, 1) They are not aligned vertically column-to-column. 2) The gaps between columns can be too wide. 
I really love the newly introduced waterfall plot, it's super practical and insightful. However, I faced a couple of issues when trying to customize it into a _funnel_ plot: 1....
Ordered data frame gets re-ordered by geomBoxplot() without any control over that. Example: ``` import kotlin.random.* import java.time.* val rand = Random(0L) val df = dataFrameOf( "date" to (0 until...