How to show two terms in simple chart

Hi,
it can be a stupide question, but i dont found a solution to do that simple thing.
suppose i have this art of doc:

{
    "_index": "index1",
    "_type": "doc1",
    "_id": "1",
    "_source": {
      "name": "Object1",
      "values": {
        "val1": 1,
        "val2": 2
      }
    }
},
{
    "_index": "index1",
    "_type": "doc1",
    "_id": "2",
    "_source": {
      "name": "Object2",
      "values": {
        "val1": 2,
        "val2": 6
      }
    }
}

How can i for example create a scatter chart that shows the exact val1 as values for x-axis and val2 for y-axis?

val2
^
|
|                          x
|
|   x
|
|-------------------------------------> val1

Thanks!

A Heatmap shall do the trick

yes, i can do that, but i have too many points to visualize and it looks not really nice. A scatter plot will be perfect for me.

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