core-plot,如何使轴标题浮动
我正在使用 core-plot,想知道是否可以使轴标题浮动,就像我们对轴所做的那样。我用它作为 y 轴,它工作正常,当我滚动时它不会移动。 这里是 Y 轴的代码:
y.isFloatingAxis = YES;
我只是希望标题在滚动时不会移动。
或者如果没有选择的话提供提示。
谢谢
I'm working with core-plot and want to know if it's possible to make the axes titles floating, like we can do with axes. I use it for the y axe, and it works fine, it doesn't move when I scroll.
Here the code for the Y axe:
y.isFloatingAxis = YES;
I just want the title doesn't move on scrolling.
Or a tips if there's no option.
thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果将
titleLocation
属性设置为 NaN(默认值),则当绘图滚动时,标题将保持在绘图范围的中央。如果您希望它保持固定在另一个位置,您可以使用绘图空间委托在滚动时将标题位置更新到所需位置。If you set the
titleLocation
property to NaN (the default value), the title will stay centered in the plot range as the plot scrolls. If you want it to stay fixed in another location, you can use a plot space delegate to update the title location to the desired location when scrolling.