折线图留下数据空白
我有一个 Flex 折线图,允许用户更改 y 轴范围。当数据点超出范围时,图表会删除超出范围点两侧的线段,从而在数据线上留下间隙。
我目前正在使用 data 函数将超出 y 轴最小值/最大值范围的值钳位,但这会显示误导性数据。
有没有办法让它将线绘制到 y 轴最大/最小点,使其看起来像线偏离绘图?
I have a Flex line chart where I allow the user to change the y axis ranges. When a data point falls outside the ranges, the chart drops the line segments on either side of the out of range point leaving a gap in the data line.
I'm currently using the data function to clamp the values out of range to the y axis min/max, but this displays misleading data.
Is there a way to make it draw the lines to the y axis max/min point, making it look like the line goes off the plot?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
LineSeries 中有一个参数 filterDataValues - 将其设置为“none”,它应该可以解决问题。
There is a parameter filterDataValues in LineSeries - set it to "none" and it should do the trick.