In bar chart when the no of results are getting increased the view gets more clumsy. Instead of increasing the chart height is how to provide a panel slider to the barchart.
For example consider t...
See more...
In bar chart when the no of results are getting increased the view gets more clumsy. Instead of increasing the chart height is how to provide a panel slider to the barchart.
For example consider the below scenario: | makeresults
| eval team_name="team1,team2,team3,team4,team5,team6,team7,team8,team9"
| makemv team_name delim=","
| mvexpand team_name
| eval alpha=2, beta =4
| streamstats count as flag
| eval alpha=alpha*flag,beta=beta*flag
| table team_name alpha beta
when the results are getting increased instead of showing team_names on the y axis it will change to common name as team_names(mentioned in pic2).since my search query results different no of counts at each time, increasing the height won't be right solution. so i want to introduce page vertical slider so irrespective of the count it will give the details and visualization also wont impact. Please suggest your thoughts.
| makeresults
| eval team_name="team1,team2,team3,team4,team5,team6,team7,team8,team9,team10,team11,team12,team13,team14,team15"
| makemv team_name delim=","
| mvexpand team_name
| eval alpha=2, beta =4
| streamstats count as flag
| eval alpha=alpha*flag,beta=beta*flag
| table team_name alpha beta