我正在尝试使用 CareKit-UI 在我的应用程序中显示图表。但是默认的笔画宽度很大,我想改变它。我尝试使用OCKDimensionStyler
并覆盖该lineWidth1
属性,但它未能更新图形的主线。
图表视图声明:
let chartView = OCKCartesianChartView(type: .line)
chartView.headerView.titleLabel.text = "Doxylamine"
chartView.graphView.dataSeries = [
OCKDataSeries(values: [0, 1, 1, 2, 3, 3, 2], title: "Doxylamine")
]