Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从 SwiftCharts 调整区域示例项目,我遇到了点指示器被切断的问题,如下所示:
在 github 问题中发现了这个问题和解决方案设置的其他问题chartSettings.clipInnerFrame = false
chartSettings.clipInnerFrame = false
但是,当我这样做时,区域颜色尴尬的形状也会像这样变得可见:
我怎样才能得到点的整体形状,但所有其他的东西?
您必须通过ChartPointsViewsLayer点数clipViews: false(参见示例)。ChartSettings.clipInnerFrame必须为真(即默认值)。这样,只有带有点的图层被剪裁。
ChartPointsViewsLayer
clipViews: false
ChartSettings.clipInnerFrame
最后,如果您想剪裁未剪裁的点图层(以限制显示它们的图表之外的区域),您可以传递一个自定义矩形,就像这里一样(这个设置当然不是很直观)。