Nothing Special   »   [go: up one dir, main page]

Must Know in D3js

Download as rtf, pdf, or txt
Download as rtf, pdf, or txt
You are on page 1of 1

What is the full form on D3?

Data driven documents

D3 is used to create SVG

What does SVG stand for Scalable Vector graphics

What are the prerequisites to learn D3 HTML, CSS, Javascript

D3 is developed by Mike Bostock

_______is the correct syntax to generate the simplest D3 js Axis var xAxis= d3.scale.axis();

What is the syntax to draw a line in D3 svg.append("line").attr("x1", 0).attr("y1", 200).attr("x2",


100).attr("y2", 100);

_______is the syntax to read JSON data d3.json

_______is or are the main selection in D3 All

What is the correct syntax to draw a circle in D3 svg.append("circle").attr("cx", 200).attr("y",


150).attr("r", 50);

______ scale creates linear scale in D3 d3.scaleLinear

What will be the output of scale(300)? 180

You might also like