lets-plot icon indicating copy to clipboard operation
lets-plot copied to clipboard

Multiplatform plotting library based on the Grammar of Graphics

Results 277 lets-plot issues
Sort by recently updated
recently updated
newest added

Is there any way to achieve a gradient in the filling of an area chart? ![image](https://github.com/user-attachments/assets/18c7dbf7-2f48-4ca4-a0b8-b0d5152138ae) 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))...

bug

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...

bug

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. ![Image](https://github.com/user-attachments/assets/85632f9c-4179-4b63-b5c4-f10418eabcc9)

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...