gpt4 book ai didi

javascript - Flot:系列是选项中意外的标识符

转载 作者:行者123 更新时间:2023-12-02 18:15:44 25 4
gpt4 key购买 nike

新手问题。使用 flot jquery 库,我尝试设置系列选项,但出现错误:series: { 行上出现“意外标识符”。

我正在尝试关注 https://github.com/flot/flot/blob/master/API.md#plot-options 。有什么我不明白的地方吗?

<!DOCTYPE html>
<html>
<head>
<title>Flot Graph Testing</title>
<script src="jquery-2.0.3.js"></script>
<script src="jquery.flot.js"></script>
<script type="text/javascript">

$(function() {

var options = {
grid: {
show: false
}
series: {
bars: {
show:true
}
}
};

var rawdata = [[0, 3], [2, 8], [4, 5], [6, 13]];
var data = [{data: rawdata }]
$.plot("#placeholder", data, options);

// Add the Flot version string to the footer

$("#footer").prepend("Flot " + $.plot.version + " &ndash; ");
});

</script>
</head>

<body>
<div id="header">
<h2>Flot graph</h2>
</div>

<div id="content">
<div class="container">
<div id="placeholder" class="my-placeholder" style="width:600px;height:300px"></div>
</div>
<p>This is a flot graph</p>
</div>
</body>
</html>

最佳答案

您缺少一个逗号来分隔 options 对象的属性:

    var options = {
grid: {
show: false
}, // <-- comma
series: {
bars: {
show:true
}
}
};

关于javascript - Flot:系列是选项中意外的标识符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19323733/

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