所以我一直在尝试使用plotly.js绘制我的网站所需的图表...但是我不知道为什么它不起作用..?它创建了图形应该去的空间,但它没有显示任何东西...... plotly.js的网站本身有一个“入门”页面,我跟着但它不起作用..任何想法为什么?这里是带有脚本标签的代码,这里是我实际尝试创建图形的代码(这是HTML格式)
<script>
TESTER = document.getElementById('tester');
Plotly.plot( TESTER,[{
x: [1,2,3,4,5],
y: [1,2,4,8,16] }], {
margin: {t: 0}
});
</script>
<body>
<div id="main">
<div id="header">
<div id="logo">
<div id="logo_text">
<!-- class="logo_colour", allows you to change the colour of the text -->
<h1><a href="index.html">Sensor Data Graphs<span class="logo_colour"> </span></a></h1>
</div>
</div>
</div>
<div id="site_content">
<div id="content">
<!-- Page Content starts here -->
<!--Heading-->
<h2><b>Graphs</b></h2>
<div id="tester" style="width:90%;height:250px;"></div>