Hi,
How to put legend to the plots in chronograf ?
These are the four queries that are plotted.
SELECT last("voc") AS "last_voc" FROM "sensordata"."autogen"."voc" WHERE time > :dashboardTime: AND "eui"='0015BC0036000018' GROUP BY time(:interval:) FILL(null)
SELECT last("voc") AS "last_voc" FROM "sensordata"."autogen"."voc" WHERE time > :dashboardTime: AND "eui"='0015BC0036000019' GROUP BY time(:interval:) FILL(null)
SELECT last("voc") AS "last_voc" FROM "sensordata"."autogen"."voc" WHERE time > :dashboardTime: AND "eui"='0015BC003600001B' GROUP BY time(:interval:) FILL(null)
SELECT last("voc") AS "last_voc" FROM "sensordata"."autogen"."voc" WHERE time > :dashboardTime: AND "eui"='0015BC0036000016' GROUP BY time(:interval:) FILL(null)
All the four queries look the same, except for the ‘eui’ tag. I explored through the visualization tab but there is only one option to" show static legend" option and its only outputting “last_voc” for all the plots. Is there any way that i can name/legend manually or by using tags ?
Is it possible to represent the plots in different color although the query is same except for tag like in above case?
Thanks