The multi line graph should looks like below. Also, there should be an option to select/unselect required values (PRD/STG/QAS…) and graph should reflect values accordingly.
So far i was able to manage to display only one values.
Hola, it is hard to say without knowing how your data is structured, but it could be that you need to rework your query so that the results are formatted more like this using group by or something:
time | metric | value -----|--------|------ 17-03| qas |13.86 17-03| prd |6.97
etc
Or maybe you could use one separate query for each of the five columns (qas,prd,etc.) in your example.
Data’s are structured in postgres database. We have individual columns for prd, stg, qas, sit, and tis values and also have time column. The end goal is to represent the one graph where in X-Axis will be time series and Y-Axis will be numeric values. Then values from prd, stg, qas, sit, and tis values are represented in this graph with individual line values.