滑块的变化必须反映在核心图上

发布于 2024-11-30 12:53:49 字数 192 浏览 0 评论 0原文

我在一个视图中有滑块,在其子视图(视图 2)中有使用核心图的条形图。 首先,条形图显示 viewDidLoad 方法中默认数据的图形(它具有滑块的初始值)。

当滑块更改时,图表应该相应地反映条形图。但是我无法反映图表中滑块的变化。有什么方法可以完成我的工作。我可以随时更改其他视图(视图 2)中的标签滑块更改通过一些 IBAction 来实现此滑块更改。

I have slider in one view and Bar chart using core plot in its sub view(view 2).
At first the bar chart shows graph for default data in viewDidLoad method(it has initial values for slider).

When the slider changes the graph should reflect the bar chart accordingly.But i could not reflect the changes in slider in the graph.Is there any way to get my thing done.I can change the label in other view(view 2) when ever slider changes by some IBAction for this slider change.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夕嗳→ 2024-12-07 12:53:49

将 IBAction 连接到滑块移动时触发的每个滑块。在操作方法内,在绘图上调用 -reloadData。该图将自动查询数据源以获取新数据。您的数据源应该读取滑块并返回它们的当前值作为绘图数据。

Connect an IBAction to each slider that fires when the slider moves. Inside the action method, call -reloadData on the plot. The plot will automatically query the datasource for new data. Your datasource should read the sliders and return their current values as the plot data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文