SI使用小数位域标记格式

时间:2014-12-13 14:52:25

标签: javascript d3.js format scale axis-labels

我正在设计一个散点图。在以下示例中,缩放函数的输入域为 [0.04,0.9] 。在轴上使用.tickFormat(d3.format(".1s"))以便在需要时显示SI abbriviation。在剪切后运行时,您会注意到,标签显示 500 而不是显示 500

var margin = {top: 20, right: 0, bottom: 20, left: 0},
    width = 300 - margin.left - margin.right,
    height = 175 - margin.top - margin.bottom;

var x = d3.scale.ordinal()
    .domain([0])
    .rangePoints([0, width], 1);

var y = d3.scale.linear()
    .domain([0.04, 0.9])
    .range([height, 0]);

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 + ")");

svg.append("g")
    .attr("transform", "translate(" + x(0) + ",0)")
    .attr("class", "axis")
    .call(d3.svg.axis()
      .scale(y)
      .orient("left")
      .ticks(2)
      .tickFormat(d3.format(".1s")));
.axis path,
.axis line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
}

.axis text {
  font: 10px sans-serif;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>

在这种情况下,我希望d3坚持使用 0.5 。如果输入域下降到 [0.004,0.009] 之类的话,它应该只切换到SI abbriviation。

http://jsfiddle.net/kreide/hw9vcnkc/(如果你需要用我的例子试试,那就是jsfiddle)

2 个答案:

答案 0 :(得分:1)

D3没有像这样的特殊外壳的内置规定,但您可以自己轻松完成。例如,省略&#34; m&#34;仅当数字至少为0.1时才使用后缀,请使用以下代码:

.tickFormat(function(d) {
      console.log(d3.formatPrefix(d));
      if(d3.formatPrefix(d).symbol == "m" && d >= 0.1) {
          return d;
      } else {
          return d3.format(".1s")(d);
      }
  })

完整演示here

答案 1 :(得分:0)

顺便说一下,如果有人想为D3 v4寻找方法:

.tickFormat(function(d) {
  let val = formatPrefix(".1s", d)(d);
  console.log(val);
  // if the formatted number uses the SI prefix "m" for milli, then just return the raw number
  // ie return .5 instead of 500m
  if(val.match(/m$/) && d >= 0.1) {
    return d;
  } else {
    return format(".1s")(d); //all other numbers should get the SI treatment
  }
})