Hi,
I have saved a document into elasticsearch, which has an array of users which include how many hours of work they have remaining, and I'm trying to show this as a bar chart in Kibana.
The JSON I've entered looks like this;
{
"graph":{
"id":601,
"name":"Graph",
"labels":[
{
"user":"*B",
"id":16,
"colour":"157AFF",
"value":9
},
{
"user":"A",
"id":534,
"colour":"EEAF1B",
"value":0
},
{
"user":"J",
"id":1954326,
"colour":"C15CB9",
"value":9
}
]
}
}
and the saved document in kibana looks like this
I am able to arrange the X axis of the graph to include the user names. However I can't get the Y axis of the graph to show the amount in the value correctly. The bar will always remain the same size.
Any help or guidance on this would be appriciated,
Thanks