Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have in my DB about 20.000.000 datapoints. (DB is growing per day 1.000.000) We try to show this points in different linechart. The problem is, if the DB is growing, QLIK dos not show all points in the charts. Till 1.000.000 (50.000 for on chart) it is no problem. If we zoom in all poinst in the chart. But with 5.000.000 we are missing 90% of all points.
Is there a solution for this?
In the overview it would be ok to summarize, but not if we zoom in. This are machine datas and every point is important. We record this data every second.If we can see this points only 1 per minute it is quite usless.
The from Gysbert mentioned aggregation mustn't mandatory be applied on the script-level else you could try it with a calculated dimension, maybe with something like this in a variable "var":
= pick(match(-1, count(DataPoint) > 1E6, count(DataPoint) > 1E4, count(DataPoint) <= 1E4),
[Hour], [Minute], [Second])
and then using the variable as dimension, like: $(var)
- Marcus