Visiblox 图表中的反转线性轴
是否可以反转 Visiblox 图表中的 LinearAxis?例如,如果使用线性轴作为 Y 轴,并且最小和最大轴值为 1 和 10,那么我希望翻转该轴,以便 1 位于轴的顶部,10 位于轴的底部。底部。
Is it possible to invert a LinearAxis in a Visiblox chart? For example, if a linear axis is being used as the Y axis and the minimum and maximum axis values are 1 and 10, then I would want the axis to be flipped so that 1 is at the top of the axis and 10 is at the bottom.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下一个版本将在接下来的一两个月内发布,将具有允许此功能的 ReverseAxis 属性。
或者,可以实现您自己的 IAxis 来执行此操作。您需要实现各种 RenderPosition 方法的新版本,例如 GetDataValueAsRenderPositionWithoutZoom,以计算正确的“反向”渲染位置。
希望这有帮助。
The next version, due out in the next month or two, will have a ReverseAxis property that will allow this functionality.
Alternatively, it is possible to implement your own IAxis to do this. You would need to implement new versions of the various RenderPosition methods, such as GetDataValueAsRenderPositionWithoutZoom, to calculate the correct 'inverted' render position.
Hope this helps.