How to create a stacked bar graph in kibana? -
i have data in json format in elasticsearch:
{     "features": [           {             "feature": "a",             "yes": 19,             "no": 0,             "maybe": 81           },           {             "feature": "b",             "yes": 0,             "no": 0,             "maybe": 100           },           {             "feature": "c",             "yes": 10,             "no": 32,             "maybe": 58           }         ]     }  
 

Comments
Post a Comment