<!DOCTYPE html> <meta charset="utf-8"> <svg width="960" height="500"> <text y="12"> Hello, world! </text> </svg>
pre, code { font-family: "Menlo", monospace; font-size: 48px; } #foo // <any id="foo"> foo // <foo> .foo // <any class="foo"> [foo=bar] // <any foo="bar"> foo bar // <foo><bar></foo> foo.bar // <foo class="bar"> foo#bar // <foo id="bar">
document.querySelectorAll("pre, code")
$('pre, code')
d3.selectAll("pre, code")
// select the <body> element var body = d3.select("body"); // add an <h1> element var h1 = body.append("h1"); h1.text("Hello!");
// select all <section> elements var section = d3.selectAll("section"); // add an <h1> element var h1 = section.append("h1"); h1.text("Hello!");
var circle = svg.selectAll("circle") .data(data) .enter().append("circle"); .attr("cx", x) .attr("cy", y) .attr("r", 2.5);
var circle = svg.selectAll("circle") .data(data) .attr("cx", x) .attr("cy", y) .attr("r", 2.5);
var data = [ {name: "Alice", x: 10.0, y: 9.14}, {name: "Bob", x: 8.0, y: 8.14}, {name: "Carol", x: 13.0, y: 8.74}, {name: "Dave", x: 9.0, y: 8.77}, {name: "Edith", x: 11.0, y: 9.26},
function key(d) { return d.name; } var circle = svg.selectAll("circle"); .data(data, key) .attr("cx", x) .attr("cy", y) .attr("r", 2.5);
var x = d3.scale.linear() .domain([12, 24]) .range([0, 720]); x(16); // 240
var x = d3.scale.sqrt() .domain([12, 24]) .range([0, 720]); x(16); // 268.9056992603583
var x = d3.scale.log() .domain([12, 24]) .range([0, 720]); x(16); // 240
var x = d3.scale.linear() .domain([0, d3.max(numbers)]) .range([0, 720]);
var x = d3.scale.log() .domain(d3.extent(number)) .range([0, 720]);
function value(d) { return d.value; } var x = d3.scale.log() .domain(d3.extent(object, value)) .range([0, 720]);
var x = d3.scale.linear() .domain([12, 24]) .range(["steelblue", "brown"]); x(16); // #666586
var x = d3.scale.linear() .domain([12, 24]) .range(["0px", "720px"]); x(16); // 240px
var x = d3.scale.linear() .domain([12, 24]) .range(["steelblue", "brown"]); .interpolate(d3.interpolateHsl); x(16); // #3cb05f
var x = d3.scale.linear() .domain([-10, 0, 100]) .range(["red", "white", "green"]); x(-5); // #ff8080 x(50); // #80c080
var x = d3.scale.ordinal() .domain(["A", "B", "C", "D"]) .range([0, 10, 20, 30]); x("B"); // 10
var x = d3.scale.category20() .domain(["A", "B", "C", "D"]) x("B"); // #aec7e8 x("E"); // #2ca02c x.domain(); // A, B, C, D, E
var x = d3.scale.linear() .domain([12, 24]) .range([0, 720]); x.ticks(5); // [12, 14, 16, 18, 20, 22, 24]
var x = d3.scale.linear(); y = d3.scale.linear(); var line = d3.svg.line() .x(function(d) { return x(d.x); }) .y(function(d) { return y(d.y); });
svg.append("path") .datum(objects) .attr("class", "line") .attr("d", line);