Last active
February 16, 2018 07:48
-
-
Save curran/2c4d5eccd668085b39e2c9015e916b98 to your computer and use it in GitHub Desktop.
Data Driven SVG Text
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Shopping App Prototype</title> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
</head> | |
<body> | |
<svg width="500" height="960"></svg> | |
<script> | |
const textValue = d => `${d.name} $${d.price}` | |
const data = [ | |
{ name: 'Milk', price: 3 } | |
]; | |
const svg = d3.select('svg'); | |
svg.selectAll('text').data(data) | |
.enter().append('text') | |
.style('font-size', '32pt') | |
.style('font-family', 'Sans-Serif') | |
.attr('x', 250) | |
.attr('y', 50) | |
.text(textValue); | |
</script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
�PNG | |