Chrome不会在Highcharts,Safari和Firefox中显示x轴标签

时间:2018-09-18 09:56:31

标签: highcharts label axis

奇怪的是,Chrome在x轴上不显示月份的缩写,而仅显示数字(8307)。 Firefox和Safari确实可以正确显示它。

这是代码: https://jsfiddle.net/luftikus143/cpnzhveu/10/

"Exception of type: System.InvalidCastException. Source: Northwoods.GoWPF. 
Occured in System.Collections.Generic.IEnumerable`1[System.Object] 
an(System.Object) method
Exception message is: Unable to cast object of type 'Northwoods.GoXam.Group' HP.Utt.Controls.FlowCanvas.FlowCanvas.FlowCanvasItem`1[HP.QTP.BackEndServices.Q tpItemsIfs.IActionCallGraph]"

"Exception of type: System.Windows.Media.Animation.AnimationException. 
Source: PresentationCore. Occured in Void 
OnCurrentTimeInvalidated(System.Object, System.EventArgs) method
Exception message is: Cannot animate the 'Location' property on a 
'System.Windows.Controls.Grid' using a 
'System.Windows.Media.Animation.PointAnimation'. For details see the inner 
exception."

有人知道为什么会这样以及如何更改吗?感谢您的提示!

1 个答案:

答案 0 :(得分:1)

由于某种原因,他们似乎对CSV的第一列的解释有所不同。 Chrome似乎将其转换为时间戳,而Firefox将其视为纯字符串。

将x轴指定为类别轴似乎对于Chrome也很明确:

xAxis: 
{
    type: 'category'
}

请参见this updated JSFiddle进行演示。