D3.js带有JSON数据的分组条形图

时间:2017-04-20 08:10:22

标签: d3.js bar-chart

我是d3.js的新手。我想在分组条形图中映射JSON数据,如图https://i.stack.imgur.com/9BLVz.png所示。我知道我的x缩放有问题。根据我的图表x应该显示月份和y轴小时。它给了我6个酒吧但是由于某种原因酒吧相互重叠。有人可以帮我在这里。

来自MariaDB的JSON数据作为对象。

[
    {"name":"jhon","hours":"9","months":"August"},
    {"name":"jack","hours":"8","months":"August"},
    {"name":"jhon","hours":"7","months":"July"},
    {"name":"jack","hours":"6","months":"July"},
    {"name":"jhon","hours":"4","months":"June"},
    {"name":"jack","hours":"5","months":"June"}
] 

代码

<!DOCTYPE html>
<meta charset="utf-8">
<style>
    .bar {
      fill: steelblue;
      stroke:black
    }

    .bar:hover {
      fill: brown;
    }

    .axis--x path {
      display: none;
    }

</style>

<svg width="500" height="500"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>
    var svg = d3.select("svg"),
        margin = {top: 20, right: 20, bottom: 30, left: 40},
        width = +svg.attr("width") - margin.left - margin.right,
        height = +svg.attr("height") - margin.top - margin.bottom;

    var x = d3.scaleBand().rangeRound([0, width]).padding(0.1),
        y = d3.scaleLinear().rangeRound([height, 0]);

    var g = svg.append("g")
        .attr("transform", "translate(" + margin.left + "," + margin.top + ")");

    d3.json("http://localhost:8888/index.php?r=emp/gethours", function(d) {

    var ydomain=d3.extent(d,function(d){return d.hours;});

    x.domain(d.map(function(d,i) {return d.months}));

    y.domain(ydomain);

    g.selectAll(".bar")
        .data(d)
        .enter().append("rect")
        .attr("x", function(d,i) { return x(d.months) })
        .attr("y", function(d) {return y(d.hours); })
        .attr("width", 40)
        .attr("height", function(d) { return height - y(d.hours); })
    });

</script>

建议后我的修改数据和代码是

生成的条形图为https://i.stack.imgur.com/VowEA.png

[{"name":"jhon","hours":"8","months":"June","emp_id":"1"},{"name":"jack","hours":"6","months":"June","emp_id":"2"},{"name":"jhon","hours":"6","months":"July","emp_id":"1"},{"name":"jack","hours":"7","months":"July","emp_id":"2"},{"name":"jhon","hours":"8","months":"August","emp_id":"1"},{"name":"jack","hours":"9","months":"August","emp_id":"2"}]

<style>

.bar {
  fill: steelblue;
  stroke:black
}

.bar:hover {
  fill: brown;
}

.axis--x path {
  display: none;
}

</style>
<svg width="500" height="500"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>

    var svg = d3.select("svg"),
    margin = {top: 20, right: 20, bottom: 30, left: 40},
    width = +svg.attr("width") - margin.left - margin.right,
    height = +svg.attr("height") - margin.top - margin.bottom;

                var x = d3.scaleBand().rangeRound([0, width]).padding(0.1),
                    y = d3.scaleLinear().rangeRound([height, 0]);



    var g = svg.append("g")
    .attr("transform", "translate(" + margin.left + "," + margin.top + ")");

    var z = d3.scaleOrdinal()
    .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]);

    d3.json("http://localhost:8888/index.php?r=emp/gethours", function(d) {


                        var ymaxdomain=d3.max(d,function(d){return parseInt(d.hours);});
                        var x1domain=d3.extent(d,function(d){return parseInt(d.emp_id);});


                        x.domain(d.map(function(d) {return d.months}));
                        y.domain([0,ymaxdomain]);

                        var x1=d3.scaleBand().rangeRound([0, x.bandwidth()]);
                        x1.domain(x1domain);

                         g.selectAll(".bar")
                        .data(d)
                        .enter().append("rect")
                        .attr("x", function(d,i) {console.log(d,i); return (x(d.months)+x1(parseInt(d.emp_id))); })

                        .attr("y", function(d) {return y(d.hours); })
                        .attr("width",x1.bandwidth())
                        .attr("height", function(d) { return height - y(parseInt(d.hours)); })
                        .attr("fill", function(d,i) { return z(d.emp_id); });



                         g.append("g")
                            .attr("class", "axis")
                            .attr("transform", "translate(0," + height + ")")
                            .call(d3.axisBottom(x));


                             g.append("g")
                                .attr("class", "axis")
                                .call(d3.axisLeft(y).ticks(null, "s"))
                                .append("text")
                                .attr("x", 2)
                                .attr("y", y(y.ticks().pop()) + 0.5)
                                .attr("dy", "0.32em")
                                .attr("fill", "#000")
                                .attr("font-weight", "bold")
                                .attr("text-anchor", "start")
                                .text("Hours");





});

</script>

3 个答案:

答案 0 :(得分:2)

Json Data

[{"name":"jhon","hours":"8","months":"June","emp_id":"1"},
 {"name":"jack","hours":"6","months":"June","emp_id":"2"},
 {"name":"jim","hours":"7","months":"June","emp_id":"3"},
 {"name":"tim","hours":"4","months":"June","emp_id":"4"},
 {"name":"jhon","hours":"6","months":"July","emp_id":"1"},
 {"name":"jack","hours":"7","months":"July","emp_id":"2"},
 {"name":"jim","hours":"8","months":"July","emp_id":"3"},
 {"name":"tim","hours":"6","months":"July","emp_id":"4"},
 {"name":"jhon","hours":"8","months":"August","emp_id":"1"},
 {"name":"jack","hours":"9","months":"August","emp_id":"2"},
 {"name":"jim","hours":"7","months":"August","emp_id":"3"},
 {"name":"tim","hours":"8","months":"August","emp_id":"4"}]

和答案-------------------------------------------- -------------

分组条形图图像https://i.stack.imgur.com/1ud5S.png

<!DOCTYPE html>
<meta charset="utf-8">
<style>

.bar {
  fill: steelblue;
  stroke:black
}

.bar:hover {
  fill: brown;
}

.axis--x path {
  display: none;
}

</style>
<svg width="600" height="600"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>

    var svg = d3.select("svg"),
    margin = {top: 20, right: 20, bottom: 30, left: 40},
    width = +svg.attr("width") - margin.left - margin.right,
    height = +svg.attr("height") - margin.top - margin.bottom;

                var x = d3.scaleBand().rangeRound([0, width]).padding(0.1),
                    y = d3.scaleLinear().rangeRound([height, 0]);



    var g = svg.append("g")
    .attr("transform", "translate(" + margin.left + "," + margin.top + ")");

    var z = d3.scaleOrdinal()
    .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]);

    d3.json("http://localhost:8888/index.php?r=emp/gethours", function(d) {


                    var ymaxdomain=d3.max(d,function(d){return d.hours;});
                        x.domain(d.map(function(d) {return d.months}));
                        y.domain([0,ymaxdomain]);

                    var x1=d3.scaleBand().rangeRound([0, x.bandwidth()]);
                        x1.domain(d.map(function(d) {return d.emp_id;}));

                         g.selectAll(".bar")
                        .data(d)
                        .enter().append("rect")
                        .attr("x", function(d,i) {return (x(d.months)+x1(d.emp_id)); })

                        .attr("y", function(d) {return y(d.hours); })
                        .attr("width",x1.bandwidth())
                        .attr("height", function(d) { return height - y(d.hours); })
                        .attr("fill", function(d,i) { return z(d.emp_id); });

                            g.append("g")
                            .attr("class", "axis")
                            .attr("transform", "translate(0," + height + ")")
                            .call(d3.axisBottom(x));

                                g.append("g")
                                .attr("class", "axis")
                                .call(d3.axisLeft(y))
                                .append("text")
                                .attr("x", 2)
                                .attr("y", y(y.ticks().pop()) + 0.5)
                                .attr("dy", "0.32em")
                                .attr("fill", "#000")
                                .attr("font-weight", "bold")
                                .attr("text-anchor", "start")
                                .text("Hours");

});

</script>

答案 1 :(得分:0)

https://bl.ocks.org/mbostock/3887051中,您需要第二个x轴来移动每个&#34;组&#34;的矩形。 查看var x1;其域名为.rangeRound([0, x0.bandwidth()]);

在您的代码中,您可以执行

   var  d = [
        {"name":"jhon","hours":"9","months":"August","group":0},
        {"name":"jack","hours":"8","months":"August","group":1},
        {"name":"jhon","hours":"7","months":"July","group":0},
        {"name":"jack","hours":"6","months":"July","group":1},
        {"name":"jhon","hours":"4","months":"June","group":0},
        {"name":"jack","hours":"5","months":"June","group":1}
    ]

x1.domain([0,1]) 
...
.attr("x", function(d) { return x(d.months)+x1(d.group) })

答案 2 :(得分:0)

哦,我发现了你的问题 变化

var ydomain=d3.extent(d,function(d){return d.hours;});

var ymaxdomain=d3.max(d,function(d){return d.hours;});
    y.domain([0,ymaxdomain]);

y轴上的最小值为4而不是0

编辑: 你也必须在定义x域后移动x1范围的定义:

    x.domain(d.map(function(d,i) {return d.months}));
// this should go after
     var x1=d3.scaleBand().rangeRound([0, x.bandwidth()]);