I have a pie chart where I show the income types of people.
(|eval income_type= if(income=<4000, "middle class","high class") | stats count by income_type
When I click on the "high class" I want to show in the drilldown which person earns how much money. So I don't want the income_type, I need the income value itself.
How can I get the income to the drilldown? Now I just get "high class" string.
I already tried $row.income$ but it doesnt work.
Thank you in advance.