Interactive with interval is not working properly

Altair Forum User
Altair Forum User
Altair Employee
edited October 2020 in Community Q&A

interval = alt.selection_interval()

chart = alt.Chart(cars).mark_point().encode(
        x = 'Miles_per_Gallon',
        y = 'Horsepower',
        color = alt.condition(interval, 'Origin', alt.value('lightgrey')),
        tooltip = 'Name'
).properties(selection = interval).interactive()

 

I tried to run this code on my jupyter notebook. The issue was that when you try to move the selected area over the graph the rest of the graph kinda moves with it making it a lot harder to get the place.