核心图 CPTGraphHostingView 角半径

发布于 2024-12-05 11:51:45 字数 40 浏览 0 评论 0原文

是否可以为 CPTGraphHostingView 设置圆角半径?

is it possible to set corner radius for CPTGraphHostingView?

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

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

发布评论

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

评论(2

大姐,你呐 2024-12-12 11:51:45

不,但你为什么需要这样做?所有核心图绘制都是由核心动画层(CPTGraph 及其所有各个部分)完成的。您可以在图形和许多其他图层上设置角半径。作为 CPTBorderedLayer 子类的任何图形部分都可以采用角半径。

No, but why would you need to? All Core Plot drawing is done by Core Animation layers (CPTGraph and all of it's various pieces). You can set the corner radius on the graph and on many other layers. Any graph part that is a subclass of CPTBorderedLayer can take a corner radius.

抹茶夏天i‖ 2024-12-12 11:51:45

HostView背景设置为透明颜色,并设置图形的背景属性和圆角半径。这对我有用:

hostView.backgroundColor=[UIColor clearColor];
graph.backgroundColor=[UIColor brownColor];
graph.cornerRadius=10.0f;

Make the HostView background clear color and set the background property and corner radius of the graph. This worked for me:

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