Created
December 4, 2018 04:00
-
-
Save hahastudio/89ed1967fb0d304f2896cd42ef672bc5 to your computer and use it in GitHub Desktop.
D3.js time scale on IE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
category | date | value | |
---|---|---|---|
A | 1/1/2013 | 53 | |
B | 1/2/2013 | 165 | |
C | 1/3/2013 | 269 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<head> | |
<style> | |
.axis { | |
font: 10px sans-serif; | |
} | |
.axis path, | |
.axis line { | |
fill: none; | |
stroke: #000; | |
shape-rendering: crispEdges; | |
} | |
</style> | |
</head> | |
<body> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script> | |
var margin = {top: 20, right: 20, bottom: 70, left: 40}, | |
width = 600 - margin.left - margin.right, | |
height = 300 - margin.top - margin.bottom; | |
// Parse the date / time | |
var parseDate = d3.time.format("%Y-%m-%d").parse; | |
var x = d3.scale.ordinal().rangeRoundBands([0, width], .05); | |
var yMin = new Date("2013-01-01"); | |
var yMax = new Date("2013-01-04"); | |
var y = d3.time.scale().domain([yMin, yMax]).nice(); | |
var xAxis = d3.svg.axis() | |
.scale(x) | |
.orient("bottom"); | |
var yAxis = d3.svg.axis() | |
.scale(y) | |
.orient("left") | |
.ticks(10); | |
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 + ")"); | |
d3.csv("bar-data.csv", function(error, data) { | |
data.forEach(function(d) { | |
d.date = parseDate(d.date); | |
d.value = +d.value; | |
}); | |
x.domain(data.map(function(d) { return d.category; })); | |
//y.domain([0, d3.max(data, function(d) { return d.date; })]); | |
svg.append("g") | |
.attr("class", "x axis") | |
.attr("transform", "translate(0," + height + ")") | |
.call(xAxis) | |
.selectAll("text") | |
.style("text-anchor", "end") | |
.attr("dx", "-.8em") | |
.attr("dy", "-.55em") | |
.attr("transform", "rotate(-90)" ); | |
svg.append("g") | |
.attr("class", "y axis") | |
.call(yAxis) | |
.append("text") | |
.attr("transform", "rotate(-90)") | |
.attr("y", 6) | |
.attr("dy", ".71em") | |
.style("text-anchor", "end") | |
.text("Value ($)"); | |
svg.selectAll("bar") | |
.data(data) | |
.enter().append("rect") | |
.style("fill", "steelblue") | |
.attr("x", function(d) { return x(d.category); }) | |
.attr("width", x.rangeBand()) | |
.attr("y", function(d) { return y(d.date); }) | |
.attr("height", function(d) { return height * y(d.value); }); | |
}); | |
</script> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment