Hello,
I've a survey data which collects metrics with values between 1-5.
This survey will be filled by many users say by 200. Something like:
User 1:
Ease of use (1-5): 4
Durability (1-5): 2
Features (1-5): 3
User 2:
Ease of use (1-10): 3
Durability (1-10): 1
Features (1-10): 2
etc..
So json format is like this:
{ name: user1, ease_of_use: 4, durability: 3 }
I want to show this data in a stacked horizontal bar visualization for 200 users with percentage distribution of all Metrics.
Something like this:
I'm new to Kibana and when I'm trying to show these counts, and add first metrics of Ease of use
, it shows something like this:
Kindly suggest, what do I need to do?
Thanks