Interactive with interval is not working properly

User: "Altair Forum User"
Altair Employee
Updated by Altair Forum User

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.

Find more posts tagged with

No comments on this post.