Replies: 1 comment
-
Could you upload the full code required to reproduce the issue? Ideally making it as minimal as possible by removing aspects that are not required to reproduce what you are describing. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to do a choropleth map that you can filter the date range with an interval selector (It has to be an interval selector because it also changes other charts in the dashboard). I do the interval selection on the following chart:
This works well for me with filtering dates in line charts, as I can change the domain directly in the axis. However, in the mark_geoshape I do not have that option.
I have tried accessing the endpoints of the iterval selector following the steps in https://github.com/vega/altair/issues/1765 using transform calculate: However, it didn't work. I tried to acces the value and printing it with mark text. At first, i get the non-defined value and as soon as I used the filter the text dissappeared, so I assume it is not getting any value.
The data has the following format:
What I want to achieve (and I did by manually filering it) is to plot something like this:
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions