Ivan Kupriyanov

Results 28 issues of Ivan Kupriyanov

If you now click on a subplot in a gggrid and then click on another subplot in the same gggrid, tooltips will appear in both subplots. ![image](https://github.com/JetBrains/lets-plot-skia/assets/14200189/7e65532d-9e1b-420d-9578-082a580cbccb)

When mouse moves fast enough tooltips may stuck on gggrid: ![image](https://github.com/JetBrains/lets-plot-skia/assets/14200189/5ddffab9-56e2-4c24-9555-1fa2aef19f02)

Border around a plot is inconsistent. Code snippet: ```python from lets_plot import * LetsPlot.setup_html() p = gggrid([ ggplot() + geom_point() + coord_fixed(), gggrid([ ggplot() + geom_point() + coord_fixed(), ggplot() +...

bug

```python from lets_plot import * LetsPlot.setup_html() d = { 'x': [-10, 0.255, 0.265, 0.285, 0.295, 10] } ggplot(d) + geom_point(aes(x='x')) + coord_cartesian(xlim=[0.25, 0.3]) ``` The x-axis tooltip for each point...

```python from lets_plot import * LetsPlot.setup_html() d = { 'x': [1, 2], 'y': [0, 0], 'c': [1, 2] } ggplot(d, aes(x='x', y='y')) \ + geom_point(aes(color=as_discrete('c', label="CCC", levels=[2, 1]))) + ggtitle("label='CCC',...

In the legend, I expect the order `3, 2, 1` (reversed, `order=-1`) for `levels=1, 2, 3`. The actual order is `2, 1, 3`, which looks like the reversed data order,...

```python from lets_plot import * LetsPlot.setup_html() d = { 'l': [3], } ggplot(d, aes(color='l')) + geom_point() + ggsize(300, 200) ``` ![image](https://github.com/user-attachments/assets/dcb5ccef-3aa3-4d74-a8c1-9044854eaaae) ```python from lets_plot import * LetsPlot.setup_html() d = {...

Consider two plots: ```python from lets_plot import * LetsPlot.setup_html() gggrid([ ggplot( { 'x': [0, 1, 2, 3, 4, 5, 6], 'y': [0, 0, 0, 0, 0, 0, 0] }, aes('x',...