溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

詳解plotly.js 繪圖庫入門使用教程

發(fā)布時(shí)間:2020-08-21 11:56:01 來源:腳本之家 閱讀:437 作者:葉止水 欄目:web開發(fā)

本文介紹了plotly.js 繪圖庫入門使用教程,分享給大家,具體如下:

Plotly

緣起

這兩天想在前端展現(xiàn)數(shù)學(xué)函數(shù)圖像,猜測(cè)應(yīng)該有成熟的 js 庫。

于是,簡單的進(jìn)行了嘗試。

最后決定使用plotly.js,其他的比如function-plot 看起來也不錯(cuò),以后有時(shí)間再看。

Plotly

plotly.js is the open source JavaScript graphing library that powers Plotly.

Plotly 可以稱之為迄今最優(yōu)秀的繪圖庫,沒有之一。

簡單案例

代碼

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>plot 繪制圖像</title>
</head>
<body>
<div id="tester" ></div>
</body>
<script src="https://cdn.plot.ly/plotly-1.2.0.min.js"></script>
<!-- test -->
<script>
  TESTER = document.getElementById('tester');
  Plotly.plot(TESTER, [{
    x: [1, 2, 3, 4, 5],
    y: [1, 2, 4, 8, 16]
  }], {
    margin: {t: 0}
  });
</script>
</html>

效果

詳解plotly.js 繪圖庫入門使用教程

點(diǎn)圖

繪制數(shù)學(xué)圖像

數(shù)學(xué)圖像繪圖的原理。比如說 y = 2*x+1,實(shí)際上就是一系列 (x,y) 的點(diǎn)連接而成的圖像。

代碼

<div id="math-function" ></div>
<script src="https://cdn.plot.ly/plotly-1.2.0.min.js"></script>

<script>
  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}
  });
</script>

效果

詳解plotly.js 繪圖庫入門使用教程

函數(shù)圖像

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI