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

geom_step: confusing x-axis tooltip on a multi-group plot

Open IKupriyanov-HORIS opened this issue 2 years ago • 0 comments

import pandas as pd
from lets_plot import *
LetsPlot.setup_html()
df = pd.read_csv("https://raw.githubusercontent.com/JetBrains/lets-plot-docs/master/data/iris.csv")
ggplot(df, aes(x="sepal_length", color="species")) + stat_ecdf()

The axis tooltip is displayed only for the first group of data. The other groups display the main tooltip not associated with the axis tooltip, which is confusing.: image

IKupriyanov-HORIS avatar Aug 21 '23 17:08 IKupriyanov-HORIS