Scichart中的DateTimeOffset支持

时间:2018-05-17 23:04:24

标签: scichart

是否可以在scicharts中使用DateTimeOffset作为X轴数据类型?

我尝试创建

的DataSeries

DataSeries<DateTimeOffset,double> 但是获得了

的运行时异常
  

“无法为TX = System.DateTimeOffset类型创建DataDistributionCalculator”

1 个答案:

答案 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上的字符串。

这就是你需要的吗?