gpt4 book ai didi

javascript - X轴重新启动 - KendoUI

转载 作者:行者123 更新时间:2023-11-28 07:25:38 26 4
gpt4 key购买 nike

使用下面的示例,x 轴系列并非从相同的 x 值开始。 x 轴将在中途从 0 重新开始。

function createChart() {
$("#chart").kendoChart({
title: {
text: "Path"
},
categoryAxis: {
labels: {
step: 10,
format: "####"
},
},
valueAxis: {
reverse: true,
},
series: [{
type: "line",
field: "y",
categoryField: "x",
name: "Path1",
style: "smooth",
data: stats,
markers: {
visible: false
}
}, {
type: "line",
field: "y",
categoryField: "x",
name: "Path2",
style: "smooth",
data: stats2,
markers: {
visible: false
}
}],
});
}

enter image description here

http://jsfiddle.net/1sgt4810/30/

最佳答案

解决方案如下:

我应该根据以下示例使用 scatterLine,而不是使用类型 line http://docs.telerik.com/kendo-ui/dataviz/chart/overview#multiple-xy-axes

seriesDefaults: { 
type: "scatterLine"
},

http://jsfiddle.net/3yhbyy2g/1/

关于javascript - X轴重新启动 - KendoUI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29686432/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com