预定义的刻度值

时间:2019-02-25 14:18:15

标签: javascript d3.js

下面是我定义Y轴的方式。如何预定义刻度值?无论我在[0, 100, 200, 300, 400, 500]中拥有什么数据,我都希望它是this.data_1

var y = d3.scaleLinear()
  .rangeRound([400, 0])
  .domain([0, d3.max(this.data_1, function(d) {
    return d.items_count;
  })]);

g.append('g')
  .attr('class', 'y axis')
  .call();

0 个答案:

没有答案