Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active February 9, 2016 02:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbostock/5537671 to your computer and use it in GitHub Desktop.
Save mbostock/5537671 to your computer and use it in GitHub Desktop.
Log Axis with Zero
license: gpl-3.0

You might reserve a special place to render zeroes when using a log axis, since normally these will be displayed at infinity. However, since this represents a discontinuity in the encoding, it’s important to show the discontinuity visually.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
.axis text {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var margin = {top: 210, right: 20, bottom: 220, left: 60},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var x = d3.scale.log()
.domain([1e-1, 1e4])
.range([0, width]);
var x0 = d3.scale.ordinal()
.domain([0])
.range([-30]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom")
.ticks(20, d3.format(",.1s"));
var x0Axis = d3.svg.axis()
.scale(x0)
.orient("bottom");
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.right + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
svg.append("g")
.attr("class", "x axis")
.call(xAxis);
svg.append("g")
.attr("class", "x-zero axis")
.call(x0Axis);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment