I'm trying to highlight a line based on it's tag.
I tag my lines by using:
DrawExtendedLine("Line1" + Time, false, ...
foreach (IDrawObject draw in DrawObjects)
if (draw.Tag.EndsWith("8:35:00 AM"))
{
but I can't seem to find in the NinjaScript manual how to refer to it in order to highlight it.
Do you know how I can easily highlight one specific line?

Comment