我试图创建一个包含周数的轴。但是我无法使用正常的时间刻度,因为轴遵循一个特殊规则:
每年,第1周从一周的第一天开始
这意味着在每年年底,可能会有几天形成一个部分周,之后新的一年再次从第1周开始:
这可以使用d3时间轴进行,从而受益于所有的轴心优势吗?
答案 0 :(得分:1)
您可以使用tickFormat
功能执行此操作。以下是将默认格式与年份格式比较的示例:
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font-family: sans-serif;
color: #444;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.axis text {
font-size: 10px;
}
</style>
<body>
<h4>Week of Year Example</h4>
<div id="svg"></div>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script>
var hEach = 40; // height for each axis
var width = 960,
height = 2*hEach;
var x = d3.time.scale()
// month starts from 0!
.domain([new Date(2015, 11, 1), new Date(2016, 0, 30)])
.range([0, width]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");
// Week of year
var xAxis_woy = d3.svg.axis()
.scale(x)
.tickFormat(d3.time.weekOfYear)
.orient("bottom");
var svg = d3.select("#svg").append("svg")
.attr("width", width)
.attr("height", height)
.append("g")
var gx = svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + (.5*hEach) + ")")
.call(xAxis);
var gx_woy = svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + (1.5*hEach) + ")")
.call(xAxis_woy);
</script>