gpt4 book ai didi

ios - 如何更改 CareKit 图表中的笔画宽度?

转载 作者:行者123 更新时间:2023-12-01 19:34:03 25 4
gpt4 key购买 nike

我正在尝试使用 CareKit-UI 在我的应用程序中显示图表。但是默认的笔画宽度很大,我想改变它。我尝试使用 OCKDimensionStyler并覆盖 lineWidth1属性,但它无法更新图形的主线。

enter image description here

图 TableView 声明:

let chartView = OCKCartesianChartView(type: .line)

chartView.headerView.titleLabel.text = "Doxylamine"

chartView.graphView.dataSeries = [
OCKDataSeries(values: [0, 1, 1, 2, 3, 3, 2], title: "Doxylamine")
]

最佳答案

此属性不可使用 OCKStyler 进行编辑, 但通过设置 size OCKDataSeries 的属性(property).

这是代码的更新版本:

let chartView = OCKCartesianChartView(type: .line)

chartView.headerView.titleLabel.text = "Doxylamine"

var series = OCKDataSeries(values: [0, 1, 1, 2, 3, 3, 2], title: "Doxylamine")
series.size = 2
chartView.graphView.dataSeries = [series]

这允许您在同一个图表上拥有多个系列,每个系列具有不同的笔划宽度。

enter image description here

关于ios - 如何更改 CareKit 图表中的笔画宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60799056/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com