Skip to content

Instantly share code, notes, and snippets.

@vjpgo
vjpgo / index.html
Created January 31, 2013 23:24
d3 minor lines 5
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.axis text {
font: 10px sans-serif;
}
.axis path, .axis line {
fill: none;
@vjpgo
vjpgo / index.html
Last active December 12, 2015 00:58
d3 minor lines 4
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.axis text {
font: 10px sans-serif;
}
.axis path, .axis line {
fill: none;
@vjpgo
vjpgo / index.html
Created January 31, 2013 23:20
d3 minor lines 3
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.axis text {
font: 10px sans-serif;
}
.axis path, .axis line {
fill: none;
@vjpgo
vjpgo / index.html
Last active December 12, 2015 00:58
minor Gridelines
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.axis text {
font: 10px sans-serif;
}
.axis path, .axis line {
fill: none;
@vjpgo
vjpgo / index.html
Last active December 12, 2015 00:58
D3 time.scale minor lines
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.axis text {
font: 10px sans-serif;
}
.axis path, .axis line {
fill: none;
@vjpgo
vjpgo / index.html
Created January 31, 2013 22:38
D3.js axis gridlines width > 1.0
<!DOCTYPE html>
<meta charset="utf-8">
<style> /* set the CSS */
body { font: 12px Arial;} /* set the default text for anything occuring in the of the html */
path.line {
fill: none;
stroke: purple;
stroke-width: 1.5;
@vjpgo
vjpgo / index.html
Last active December 12, 2015 00:58
D3.js axis gridlines width < 1.0
<!DOCTYPE html>
<meta charset="utf-8">
<style> /* set the CSS */
body { font: 12px Arial;} /* set the default text for anything occuring in the of the html */
path.line {
fill: none;
stroke: purple;
stroke-width: 1.5;