I have a kql script that creates the table at bottom and the line chart here:
Using kusto, is it possible to display text on one or more points, as
where it says "Champion" below in this line chart?
kql code
myquery
| render linechart with (
legend = hidden, title = myracer,
ymin=0, ymax=4,
xcolumn=Place, xaxis=linear, xtitle="Location",
ycolumns=Stage_Num, ytitle="Stage"
)
;
It is not currently possible to add text to point(s) in a Kusto linechart like originally requested. However, with help from @RithwikBojja, we were able to display text on a linechart with user toggle, and it comes with colored data points.