是否可以在scicharts中使用DateTimeOffset作为X轴数据类型?
我尝试创建
的DataSeries
DataSeries<DateTimeOffset,double>
但是获得了
“无法为TX = System.DateTimeOffset类型创建DataDistributionCalculator”
答案 0 :(得分:1)
根据SciChart documentation for DataSeries,支持的数据类型如下:
注意:SciChart中允许的类型包括DateTime,TimeSpan,Int64,Int32,Int16,Byte,Double,Float,UInt64,UInt32,UInt16,SByte。
DateTime,TimeSpan仅允许在TX上使用。不允许使用十进制(128)位。不允许自定义类型。
因此,无法在DataSeries或XAxis中为TX声明自定义类型。
但是,您可以使用LabelProvider feature实现所需目标。如果您的目标是允许将DateTime抵消固定数量,那么LabelProvider允许您使用代码中的自定义规则格式化XAxis上的字符串。
这就是你需要的吗?