详解plotly.js绘图库⼊门使⽤教程本⽂介绍了plotly.js 绘图库⼊门使⽤教程,分享给⼤家,具体如下:
Plotly
缘起
这两天想在前端展现数学函数图像,猜测应该有成熟的 js 库。
于是,简单的进⾏了尝试。
最后决定使⽤,其他的⽐如看起来也不错,以后有时间再看。
Plotly
is the open source JavaScript graphing library that powers Plotly.
Plotly 可以称之为迄今最优秀的绘图库,没有之⼀。
简单案例
代码
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>plot 绘制图像</title>
</head>
<body>
<div id="tester" ></div>
</body>
<script src="cdn.plot.ly/plotly-1.2.0.min.js"></script>
<!-- test -->
<script>
TESTER = ElementById('tester');
Plotly.plot(TESTER, [{
x: [1, 2, 3, 4, 5],
y: [1, 2, 4, 8, 16]
}], {
margin: {t: 0}
});
</script>
</html>
效果js控制滚动条
点图
绘制数学图像
数学图像绘图的原理。⽐如说 y = 2*x+1,实际上就是⼀系列 (x,y) 的点连接⽽成的图像。
代码
<div id="math-function" ></div>
<script src="cdn.plot.ly/plotly-1.2.0.min.js"></script>
<script>
TESTER = ElementById('math-function');
var x = [], y = [];
for(var i = -10; i < 10; i += 1) {
x.push(i);
y.push(2*i+1);
}
Plotly.plot(TESTER, [{
x: x,
y: y
}], {
margin: {t: 0}
});
</script>
效果
函数图像
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论