gpt4 book ai didi

javascript - drupal 中的 jqPlot 仪表

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

我尝试向我的网站添加仪表,我将 js 和 css 添加到我的信息文件

比在页面中我有这段代码

    <script>$(document).ready(function(){
s1 = [1];

plot0 = $.jqplot('chart0',[s1],{
title: 'Network Speed',
seriesDefaults: {
renderer: $.jqplot.MeterGaugeRenderer,
rendererOptions: {
label: 'MB/s'
}
}
});
});
</script>
<div class="plot0" style="width:250px;height:170px;"></div>

它给我一个错误“未捕获未指定情节目标”,有什么想法吗?

最佳答案

您需要将 ID 附加到您的容器:

<div id="chart0" class="plot0" style="width:250px;height:170px;"></div>

然后使用此 id 来绘制图表

请参阅工作示例 here on JSFiddle

关于javascript - drupal 中的 jqPlot 仪表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23022250/

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