I'm using HDP 2.5. The zeppelin service running successfully, when i create a zeppelin notebook with sample data, For eg; list of data available like this below;
id | name | specialisation | city | state |
001 | xxx | Android | Bronx | NY |
002 | yyy | ROR | Rome | NY |
003 | zzz | IOS | Bronx | NY |
004 | ppp | Bigdata | Dallas | TX |
005 | qqq | Android | Dallas | TX |
In pie chart is display list of states by using below query
%sql select state,count(1) AS states from sample_data where state!='' GROUP BY state ORDER BY states DESC
![12793-piechart1.jpg 12793-piechart1.jpg](https://community.cloudera.com/t5/image/serverpage/image-id/22945i9ADE4933051492BA/image-size/medium?v=v2&px=400)
In sqltable is display list of column by using using below query;
%sql select id,name,specialisation,city,state from sample_data
My question, When i select particular state from this pie chart, For eg TX, The sql table is automatically filtered with selected portion of pie chart. Please tell me how do i make this feature in zeppelin.