TimeLion Fill Colour options

Hi, I wanted to know if there is an option to have the line of the graph one colour e.g red showing the critical point however the fill below that line as yellow?

Example Below:
.es(q=sourcetype:Honda,index=ListedCars,metric=avg:Crit,timefield=@timestamp).label(CritVolume).color(Red).lines(fill=8),

This will produce a red line with a fill of red underneath, i would like a red line with a fill of yellow underneath.

Is this possible?

Hi @ek9boy
unfortunately it's not possible to achieve that. The fill only change the opacity of the area. It's not a common practice to have the line of one color and the background area of another.

You can achieve something similar but the legend will be shown two times:

.es(*).color(color="yellow").lines(fill=6),
.es(*).color(color="red")


But I think this is not ideal, I'm sorry.

It will be great if you can add a feature request here: https://github.com/elastic/kibana/issues/new?template=Feature_request.md

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.