Irina Nekrasova

Results 5 issues of Irina Nekrasova

Tooltip for a line have higher priority than points, even if the point is specified first in the layer list ![image](https://github.com/JetBrains/lets-plot/assets/73931962/58d9933e-6ee5-476d-99e9-f198c7d2babf) ``` import numpy as np import pandas as pd...

bug

Add **snap-to-point** feature to `coord_polar()`

Livemap: Add zooming-in for `geom_text()`/`geom_label()` Now we have parameters **data_size_zoomin** and **const_size_zoomin** for `geom_livemap()` which control how zooming-in of the map widget increases size of geometry objects (circles, lines etc.)...

Livemap: `geom_hline()` and `geom_vline()` don't have tooltips on livemap ``` ggplot() + geom_livemap(location=[0, 0], zoom=1) + \ geom_hline(yintercept=0, size=1, color="red") ``` ![image](https://github.com/JetBrains/lets-plot/assets/73931962/0e860606-05ba-4e8c-a30b-b6044e17e158) Tooltip is presented without livemap ![image](https://github.com/JetBrains/lets-plot/assets/73931962/108afc73-573b-43f2-a845-718200ba934c) The same...

Tooltip position `top_right`/`top_left` does not consider `panel_inset` parameter. Example: ``` data = { 'subj': ['progr', 'math', 'physic', 'chemistry', 'biology'], 'subj_id': [1, 2, 3, 4, 5], 'student': ['John'] * 5, 'score':...