Visualizing a user burndown graph

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

Any chance you can share a screenshot of the graph?

Hi, Sure.

So you can see that I have the user name keyword on the x axis, but I've tried a few different methods to link their relative values to the y axis, but am just not finding what I need

Thank you! Sorry, can you also share the mapping of your index?

Hey sorry about the delay, here's the mappings of the fields I'm trying to graph, mainly, user and value

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.