我正在使用剑道图,散线系列类型,例如:like this
我可以在剑道图上绘制这些值。see the output
我有一个数组series_array
,它是动态的,包含这样的对象
{
name:"series1",
data:[x:"11/12/2018",y:"20",low:"5",high:"10"]
}
填写剑道图的jquery代码是: 代码:
$("#chart").kendoChart({
title:{ text:"my error chart"},
seriesDefaults:{
type:"scatterLine",
yErrorLowField:"low",
yErrorHighField:"high",
xField:"x",
yField:"y"
},
series:seris_array
});
问题是如何获取x轴或分类轴值,例如“ 11/12/2018”(完整日期)。