Plotly 函数图像绘制
2017年5月27日大约 2 分钟
常见的图形库系列
Victory 图表基于 React,适合 React 项目,支持移动端
Plotly
缘起
这两天想在前端展现数学函数图像,猜测应该有成熟的 js 库。
于是,简单的进行了尝试。
最后决定使用 plotly.js,其他的比如 function-plot 看起来也不错,以后有时间再看。
Plotly
plotly.js is the open source JavaScript graphing library that powers Plotly.
Plotly 可以称之为迄今最优秀的绘图库,没有之一。
简单案例
代码
plot 绘制图像
TESTER = document.getElementById('tester');
Plotly.plot(TESTER, [{
x: [1, 2, 3, 4, 5],
y: [1, 2, 4, 8, 16]
}], {
margin: {t: 0}
});
效果
TESTER = document.getElementById('tester');
Plotly.plot(TESTER, [{
x: [1, 2, 3, 4, 5],
y: [1, 2, 4, 8, 16]
}], {
margin: {t: 0}
});
绘制数学图像
数学图像绘图的原理。比如说 y = 2*x+1
,实际上就是一系列 (x,y) 的点连接而成的图像。
代码
TESTER = document.getElementById('math-function');
var x = [], y = [];
for(var i = -10; i
TESTER = document.getElementById('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}
});
贡献者
binbin.hou