Hi. I have a time-series graph that repeats for a specific variable. I wanted each “repetition” of the graph to have a different color.
Is it possible to have the color of the graph (or of the thresholds) have a different color each time? (It can even be random colors. I just want to have a visual difference between each graph)
For changing color click on the color in the legend. Color selection diagram will be promoted. Hope this works for you
maybe. do an override?
base on the field names.
set up a lot of different override colors for each series
Just for others that search alot times for solution:
grafana + influx
changes:
color schema to default palette (by serie name)
format as table
// add ur Variable like this to ur Query:
SELECT mean("value") as "${Power:text}" FROM "autogen"./^$Power$/ WHERE $timeFilter GROUP BY time($interval) fill(previous) ORDER BY time DESC tz('Europe/Berlin')