Skip to content

Instantly share code, notes, and snippets.

@noblemillie
Last active July 21, 2018 01:36
Show Gist options
  • Save noblemillie/07e2cb452d447d92dcda83e16dedfacd to your computer and use it in GitHub Desktop.
Save noblemillie/07e2cb452d447d92dcda83e16dedfacd to your computer and use it in GitHub Desktop.
gridCard
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
body {
padding: 20px;
}
.axis .grid-line{
stroke: black;
shape-rendering: roundEdges;
stroke-opacity: .2;
}
</style>
</head>
<body>
<div class="control-group">
<button onclick="rescale()">rescale</button>
</div>
<script type="text/javascript">
var height = 250,
width = 250,
margin = 35,
xAxis, yAxis, xAxisLength, yAxisLength;
var svg = d3.select("body").append("svg")
.attr("class", "axis")
.attr("width", width)
.attr("height", height);
function renderXAxis(){
xAxisLength = width - 2 * margin;
var scale = d3.scaleLinear()
.domain([0, 100])
.range([0, xAxisLength]);
xAxis = d3.axisBottom()
.scale(scale)
.ticks(10)
.tickSize(12) // <-A
.tickPadding(3);
svg.append("g")
.attr("class", "x-axis")
.attr("transform", function(){
return "translate(" + margin + "," + (height - margin) + ")";
})
.call(xAxis);
}
function renderYAxis(){
yAxisLength = height - 2 * margin;
var scale = d3.scaleLinear()
.domain([100, 0])
.range([0, yAxisLength]);
yAxis = d3.axisLeft()
.scale(scale)
.ticks(4)
.tickSize(2) // <-A
.tickPadding(2)
.tickFormat(d3.format("$"));
;
svg.append("g")
.attr("class", "y-axis")
.attr("transform", function(){
return "translate(" + margin + "," + margin + ")";
})
.call(yAxis);
}
function rescale(){
var max = Math.round(Math.random() * 100);
xAxis.scale().domain([0, max]);
svg.select("g.x-axis")
.transition()
.call(xAxis);
yAxis.scale().domain([max, 0]);
svg.select("g.y-axis")
.transition()
.call(yAxis);
renderXGridlines();
renderYGridlines();
}
function renderXGridlines(){
d3.selectAll("g.x-axis g.tick")
.select("line.grid-line")
.remove();
d3.selectAll("g.x-axis g.tick")
.append("line")
.classed("grid-line", true)
.attr("x1", 0)
.attr("y1", 0)
.attr("x2", 0)
.attr("y2", - yAxisLength);
}
function renderYGridlines(){
d3.selectAll("g.y-axis g.tick")
.select("line.grid-line").remove();
d3.selectAll("g.y-axis g.tick")
.append("line")
.classed("grid-line", true)
.attr("x1", 0)
.attr("y1", 0)
.attr("x2", xAxisLength)
.attr("y2", 0);
}
renderYAxis();
renderXAxis();
renderXGridlines();
renderYGridlines();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment