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 -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -

What is happening when Matlab is starting a "parallel pool"? -