Vitali Gajdabrus
Joined 20.08.2015
how to do Chart.DrawRay ? 11 Aug 2019, 16:02
how to do Chart.DrawRay ?
PanagiotisCharalampous 12 Aug 2019, 09:41
Hi Vitaly,
You can draw a trendline and extend it to infinity. See below
var trendLine = Chart.DrawTrendLine("TrendLine", dateTime1, y1, dateTime2, y2, Color.Red); trendLine.ExtendToInfinity = true;
Best Regards,
Panagiotis
Vitali Gajdabrus 12 Aug 2019, 09:44
Panagiotis Charalampous said:
thank...
PanagiotisCharalampous
12 Aug 2019, 09:41
Hi Vitaly,
You can draw a trendline and extend it to infinity. See below
Best Regards,
Panagiotis
@PanagiotisCharalampous