[Feature] TimeSeriesChart

It would be nice if the timeseries has configurable axes.
My point now is that I can’t manage any data which hasn’t the time property:

Please make it possible to also change the Xaxe

We dont want to alter our dataset to change te column names or whatever just to use it in this chart…

Hi @joostjojo. The timestamp is a requirement for the Time Series Chart since you are plotting data values over time that have occurred at a specific point in time. If the timestamp is data that isn't required in your use case, you may be able to use another type of chart (Pie chart, different configurations of the XY Chart). That said; looking at your sample data, it does seem like you are trying to show variations in data over time since you still have the same columns of data with differing values (even if the Timestamp column were removed).

Please make it possible to also change the Xaxe

Can you expand on this; what changes are you requesting?

We dont want to alter our dataset to change te column names or whatever just to use it in this chart…

One thing to consider would be creating a Named Query that is just only meant to feed data to the chart where you provide different column names. This would allow you to keep the dataset that you don't want to modify pristine:
image
image

the point is, we understand that the timestamp is required. but in our case the name is "TimeStamp" and the chart does only take a timestamp with the name "time".

the query you posted should be possible to do if you always have the same columns. but that is not the case. the only thing we have in every dataset is the timestamp but with the name "TimeStamp".

should be nice if we can fit our dataset in the chart without modifying it or do some extra querys to acclomplish it.

Adjust your query like so:

SELECT "TimeStamp" AS time, ....
FROM myTable
ORDER BY "TimeStamp"