Skip to content

Instantly share code, notes, and snippets.

@hoschi
Forked from mbostock/.block
Last active December 26, 2015 23:49
Show Gist options
  • Save hoschi/7233229 to your computer and use it in GitHub Desktop.
Save hoschi/7233229 to your computer and use it in GitHub Desktop.
This example demonstrates how to rotate axis labels by 45° using post-selection. With funny bounce effect :)

This example demonstrates how to rotate axis labels by 45° using post-selection. With funny bounce effect :)

<!DOCTYPE html>
<meta charset="utf-8">
<style>
.axis text {
font: 10px sans-serif;
}
.axis line,
.axis path {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
var margin = {top: 250, right: 40, bottom: 250, left: 40},
width = 500 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var x = d3.time.scale()
.domain([new Date(2012, 0, 1), new Date(2013, 0, 1)])
.range([0, width]);
var xAxis = d3.svg.axis()
.scale(x);
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var main = svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
var ticks = main
.selectAll(".tick");
ticks.selectAll("line")
.style("stroke-opacity", 0)
.transition()
.duration(2000)
.style("stroke-opacity", 1);
ticks.selectAll("text")
.style("opacity", 0)
.transition()
.duration(500)
.style("opacity", 1)
.transition()
.duration(75)
.style("text-anchor", "end")
.transition()
.ease('bounce')
.duration(1000)
.attr("y", 0)
.attr("x", 0)
//.attr("dy", ".35em")
.attr("transform", "translate(-3, 15)rotate(-45)")
;
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment