gpt4 book ai didi

javascript - 在 jqplot 中显示每月数据

转载 作者:行者123 更新时间:2023-11-30 09:05:49 28 4
gpt4 key购买 nike

我每个月都会使用 OHLC 渲染器处理一系列数据,其中包含一个数据点。我正在尝试用 jqplot 显示它。它看起来不错,除了数据点太瘦了,因为 jqplot 显示它们就好像它们只适用于那一天。当我取出日期并仅指定月份和年份时,jqplot 崩溃。

我的数据是这样的:

    [
[
"01/01/2008",
8152.9054008104704,
2612.7075024153296,
5382.8064516128998
],
// ...
[
"03/01/2008",
7554.0494491662403,
2086.69248631764,
4820.3709677419401
],
]

这种配置可行吗,还是我应该自己破解代码? documentation没有明确说明如何执行此操作。

我应该修改什么代码? DateAxisRendererOHLCRenderer?

最佳答案

您可以使用带有 jqplot.DateAxisRenderer 插件的 tickInterval 选项来创建月度刻度。

xaxis: {
renderer: jQuery.jqplot.DateAxisRenderer,
tickOptions: {
formatString:'%#d %I:%M %p'
},
rendererOptions: {
daTickInterval: [1, 'month']
}
}

关于javascript - 在 jqplot 中显示每月数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5108142/

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