// Determine Color forPlotLine
if (Plot_Value[0] >= Plot_Value[1])
{
Plot_Line_Up.Set(Plot_Value[0]);
}
else if (Plot_Value[0] < Plot_Value[1])
{
Plot_Line_Dn.Set(Plot_Value[0]);
}
Is there a straighforward way to accommodate dynamic color modificationstoa line plotstyle without the need to mind the gap?
Regards,
Whitmark

Comment