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

來源:互聯網
上載者:User

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

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

Plotly

緣起

這兩天想在前端展現數學函數映像,猜測應該有成熟的 js 庫。

於是,簡單的進行了嘗試。

最後決定使用plotly.js,其他的比如function-plot 看起來也不錯,以後有時間再看。

Plotly

plotly.js 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" style="width:600px;height:250px;"></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>

效果

點圖

繪製數學映像

數學映像繪圖的原理。比如說 y = 2*x+1,實際上就是一系列 (x,y) 的點串連而成的映像。

代碼

<div id="math-function" style="width:600px;height:250px;"></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>

效果

函數映像

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援幫客之家。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.