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           }         ]     } 

from this, possible obtain stacked chart follows? enter image description here


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -