我正在使用Xamarin中的Oxyplot。
在我的Oxyplot视图中,我想将X轴上的时间显示为18h。
18h
在c#中,这将被格式化为HH\h,但StringFormat = "HH\h"不起作用。
HH\h
StringFormat = "HH\h"
发布于 2016-06-16 20:48:17
我已经找到了解决方案:
StringFormat = @"HH\h"
https://stackoverflow.com/questions/37859516
相似问题