I would like to show some points on a graph… The problem is, that what I put in as X value is seen as string, so if I have 3 points on my x axis, for example 1 , 2 , 5, it will print them out as 1, 2, 5 with its correspondig values. what I would need is that it treats the X values as integers, so it will print 1,2,3,4,5.
I basically want to create a non time series data to visualize data rate vs bandwidth as a line chart
Yeah, it seems that is the only thing right now, but a bar chart doesn’t help me because I have 81 values on the X axis and having 81 bars will defeat the purpose of visualization and the values on X axis will overlap each other which makes it even difficult to read.
In addition to that, grafana is treating the values in X axis as strings, so I get bars 1000, 10000, 100000 instead of 1000, 2000, 3000…
It is surprising that this is not possible in Grafana which is why I am looking to switch my visualization tool to something which can better handle non-timeseries data.