I was able to display non-time series data during AEROGEAR-2003 See https://github.com/aliok/mobile-analytics-poc/blob/0ba869cd1dd977db6af11cc33e68ca31d56c3b52/architecture4/README.md If the data
- doesn't have a time column at all: we can't use graphs or pie charts. We can only use tables and possibly single number stats.
- does have a time column: we can make use of all graphs. However, in our case, our non-time series data was basically a map that holds unique clientIds with sdk versions. We also had a time column so that we can query "how many users using sdk version x.y.z and used it in last N months?". This time information is actually making the data compatible with the graphs and pie charts. In this case, pie charts were the ideal solution though. See the POC with the link above for more information.
|