D3.js

D3.js คือ JavaScript library ที่ใช้ในการปฏิบัติงาน HTML ข้อมูล

D3.js ง่ายที่จะใช้

แบบใช้งาน D3.js?

หากคุณต้องการใช้ D3.js บนเว็บปลายทาง โปรดเพิ่มลิงก์ไปยังหน่วยคลัง

<script src="//d3js.org/d3.v3.min.js"></script>

บรรยายในไซคริปต์นี้เลือกองค์ประกอบ body และเพิ่มบรรยายที่มีข้อความ "Hello World!"

d3.select("body").append("p").text("Hello World!");

ทดลองด้วยตัวเอง

กราฟจุด

ตัวอย่าง

// ตั้งขอบเขต
const xSize = 500;
const ySize = 500;
const margin = 40;
const xMax = xSize - margin*2;
const yMax = ySize - margin*2;
// สร้างจุดสุ่ม
const numPoints = 100;
const data = [];
for (let i = 0; i < numPoints; i++) {
  data.push([Math.random() * xMax, Math.random() * yMax]);
}
// ใส่ตัวแปร SVG ลงบนหน้าเว็บ
const svg = d3.select("#myPlot")
  .append("svg")
  .append("g")
  .attr("transform","โซ่ย่อย(" + margin + "," + margin + ")");
// ฟาก X
const x = d3.scaleLinear()
  .domain([0, 500])
  .range([0, xMax]);
svg.append("g")
  .attr("transform", "translate(0," + yMax + ")")
  .call(d3.axisBottom(x));
// ฟาก Y
const y = d3.scaleLinear()
  .domain([0, 500])
  .range([ yMax, 0]);
svg.append("g")
  .call(d3.axisLeft(y));
// จุด
svg.append('g')
  .selectAll("dot")
  .data(data).enter()
  .append("circle")
  .attr("cx", function (d) { return d[0] } )
  .attr("cy", function (d) { return d[1] } )
  .attr("r", 3)
  .style("fill", "Red");

ทดลองด้วยตัวเอง