Graph / Bar chart without Aggregation

I have two columns X and Y, with simple values as below.
X: 2 , 3, 4, 5, 7, 8,
Y: 1, 2, 3, 4, 5, 6

I simply want a vertical bar or a line graph with X values against Y values. I don't want any aggregation to happen. In Kibana for any time type of graph there is a default option for aggregating the data, What if I don't want to do aggregate (club data document and perform action like count, Max, Min), I simply want values of one field should appear against the values of different field.
Is it possible to achieve in Kibana, Thanks in Advance !

currently you can't use raw values, however for your case you could work around it by:

  • x axis: select histogram aggregation, select your X field
  • y axis: select sum aggregation, select your Y field

as you have only 1 y value per x this should work correctly, in case you have more y values for each x maybe use a top hit aggregation.

So in Kibana there is no option to use direct raw values without aggregation,

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