在轴图表上同时使用字符串和日期 ios
Using both String and Date on axis charts ios
我正在使用 Charts library by Daniel Gindi
在折线图的 X 轴上,我想显示 3 个值(字符串、日期、日期)。
1) 是否可以只将一个特定的标签格式化为字符串类型的值?
2) 是否可以在一个轴上显示不同的值类型?
我试过使用函数 getFormattedLabel(index: Int)
,但我还没有看到任何使用此函数的示例。此外,我在文档中找不到任何内容(它适用于 Android,因为没有 iOS 的文档):https://weeklycoding.com/mpandroidchart-documentation/
我希望轴看起来像这样:Click here for the example of X axis
谢谢!
我在这里又问了一个问题:
事实证明,我需要在我的 XAxisValueFormatter
:
中使用这段代码
if let index = axis?.entries.firstIndex(of: value), let count = axis?.entries.count , index == count - 2 {
return "Now"
}
它采用最后一个之前的索引和returns一个字符串类型。
我正在使用 Charts library by Daniel Gindi
在折线图的 X 轴上,我想显示 3 个值(字符串、日期、日期)。 1) 是否可以只将一个特定的标签格式化为字符串类型的值? 2) 是否可以在一个轴上显示不同的值类型?
我试过使用函数 getFormattedLabel(index: Int)
,但我还没有看到任何使用此函数的示例。此外,我在文档中找不到任何内容(它适用于 Android,因为没有 iOS 的文档):https://weeklycoding.com/mpandroidchart-documentation/
我希望轴看起来像这样:Click here for the example of X axis
谢谢!
我在这里又问了一个问题:
事实证明,我需要在我的 XAxisValueFormatter
:
if let index = axis?.entries.firstIndex(of: value), let count = axis?.entries.count , index == count - 2 {
return "Now"
}
它采用最后一个之前的索引和returns一个字符串类型。