My question is similar to this one, except I want a vertical reference line (or dot) to mark point(s) in time.
How can I introduce a constant reference line based on an aggregation to a Kusto timechart?
The answer above creates a nice horizonal reference line.
Can KQL do this with a vertical line?
here's a workaround...
A vertical reference line could be built by using make-series. Let's take a table that is just datetime and int:
Now let's draw a timechart:
This shows:
Now let's add our reference line. I am just adding the value "10" as a reference point:
The result looks like this