gpt4 book ai didi

javascript - 如何定义按需创建 Highcharts 的 JavaScript 函数

转载 作者:行者123 更新时间:2023-12-02 16:57:52 26 4
gpt4 key购买 nike

基本上我想定义一个函数 makeChart(data) ,它使用给定的数据创建折线图。

我尝试了以下方法:

function makeChart(data) {
$('#container').highcharts({
title: {
text: 'Monthly Average Temperature',
x: -20 //center
},
series: [{
name: 'London',
data: data
}]
});
};

alert("going to do it");

makeChart([1,2,3]);
alert("done");

打印第一条警报消息,但不打印第二条警报消息。难道是我没有导入一些文件?我的 html 当前是:

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<script src = "render.js"></script>
<div id="container"></div>

我对 javascript 很陌生。所以请有人解释一下我该怎么做?

最佳答案

您没有正确调用该函数,只需更改

$(makeChart([1,2,3]);)

makeChart([1,2,3]);

<强> See the DEMO here

关于javascript - 如何定义按需创建 Highcharts 的 JavaScript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26039394/

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