Delphi TChart使用AddNullXY和趋势函数
我有 TeeChart 版本 7.07。
我有一个带有 FastLineSeries 的图表,其中包含 400 个数据点(x 是日期,y 是使用的%)。 前 200 个是具有实际测量百分比值的有效日期。接下来的 200 个是未来的有效日期,其中 0 作为使用 AddNullXY (date,0,datelabel) 添加的 YValue。我还有一个 FastLineSeries 作为趋势函数,具有第一个系列的数据源。
问题是最后 200 个值中的 0 正在改变趋势线。我希望趋势线延伸到未来的日期,这样我就可以预测磁盘将填满的日期。我尝试过 IgnoreNulls 属性,但没有帮助。
这可能吗? 史蒂夫...
I have TeeChart version 7.07.
I have a chart with a FastLineSeries with 400 datapoints (x is date and y is used%).
the first 200 are valid dates with actual measured % values. the next 200 are valid dates in the future with 0 as the YValue that were added using AddNullXY (date,0,datelabel). I also have a FastLineSeries as a trend function with a Datasource of the first series.
The problem is the 0's in the last 200 values are changing the trend line. I want the trend line to extend into the future dates where I can predict the date the disks will fill up. I have tried the IgnoreNulls property but it was no help.
Is this possible?
Steve...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 NaN 而不是 0。
Try using NaN instead of 0.