Skip to content

Instantly share code, notes, and snippets.

@milroc
Last active October 14, 2021 22:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 36 You must be signed in to fork a gist
  • Save milroc/8724697 to your computer and use it in GitHub Desktop.
Save milroc/8724697 to your computer and use it in GitHub Desktop.

d3.unconf example gist. Fork it here.

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<link type="text/css" rel="stylesheet" href="style.css"/>
</head>
<body>
<h2 class="d3-unconf">d3.unconf</h2>
<div id="chart"></div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="src.js"></script>
</body>
</html>
d3.unconf = function() {
console.log('d3.unconf!');
};
d3.unconf();
@import url("//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700");
body {
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Helvetica, Arial, sans-serif;
}
.d3-unconf {
color: #222;
font-size: 44px;
font-style: normal;
font-weight: 300;
text-rendering: optimizelegibility;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment