- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://maurizzzio.github.io/function-plot/
- 软件文档: http://maurizzzio.github.io/function-plot/
软件介绍
Function Plot 是一个基于 D3.js 开发的 2D 图表库,用来绘制各种函数图。
示例代码:
functionPlot({
title: 'y = x * x',
target: '#linear-with-options',
width: 580,
height: 400,
disableZoom: true,
xLabel: 'x - axis',
yLabel: 'y - axis',
data: [{
fn: function (x) {
return x * x;
}
}]
});效果:
安装:

