Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/431.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript D3 JS图形在单击单选按钮时未切换_Javascript_Jquery_Html_D3.js_Svg - Fatal编程技术网

Javascript D3 JS图形在单击单选按钮时未切换

Javascript D3 JS图形在单击单选按钮时未切换,javascript,jquery,html,d3.js,svg,Javascript,Jquery,Html,D3.js,Svg,我一直在使用D3 svg图表和jquery来触发一些单选按钮,这些按钮将显示我使用以下答案的不同图形: Fiddle:我从不同的URL获取数据,以便从datetime开始按天和周填充日志计数。以下是html模板: <!DOCTYPE html> <meta charset="utf-8"> <style> body { font: 10px sans-serif; } .axis path, .axis line { fill: none; s

我一直在使用D3 svg图表和jquery来触发一些单选按钮,这些按钮将显示我使用以下答案的不同图形:

Fiddle:
我从不同的URL获取数据,以便从datetime开始按天和周填充日志计数。以下是html模板:

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

body {
  font: 10px sans-serif;
}

.axis path,
.axis line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
}

.bar {
  fill: #00a4ff;
}

.bar:hover {
  fill: #ffb900;
}

.x.axis path {
  display: none;
}

.d3-tip {
  line-height: 1;
  font-weight: bold;
  padding: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 2px;
}

/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
  box-sizing: border-box;
  display: inline;
  font-size: 10px;
  width: 100%;
  line-height: 1;
  color: rgba(0, 0, 0, 0.8);
  content: "\25BC";
  position: absolute;
  text-align: center;
}

/* Style northward tooltips differently */
.d3-tip.n:after {
  margin: -1px 0 0 0;
  top: 100%;
  left: 0;
}

</style>
<body>


<form id="chart1" action="" class="radioButtons">
    <input type="radio" name="chart" id="chart1Daily" value="daily" checked>Daily Log Run
    <input type="radio" name="chart" id="chart1Weekly" value="weekly">Weekly Log Run
</form>
<div id="chart"></div>

<script
  src="https://code.jquery.com/jquery-3.2.1.min.js"
  integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
  crossorigin="anonymous"></script>
<script src="http://d3js.org/d3.v3.js"></script>
<script src="http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js"></script>
<script>

$(document).ready(function () {
  $("input[name=chart]:radio").change(function () {
    $('#chart').slideUp('slow', function(){
      $('#chart').empty()
      if ($("#chart1Daily").is(":checked")) {
        var margin = {top: 40, right: 20, bottom: 30, left: 40},
        width = 960 - margin.left - margin.right,
        height = 500 - margin.top - margin.bottom;

        // var parseDate = d3.time.format("%Y-%m-%d").parse; // for dates like "2014-01-01"
        var parseDate = d3.time.format("%Y-%m-%dT%H:%M:%SZ").parse;  // for dates like "2014-01-01T00:00:00Z"
        var x = d3.scale.ordinal()
            .rangeBands([0, width], 0.2);

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

        var xAxis = d3.svg.axis()
            .scale(x)
            .orient("bottom");

        var yAxis = d3.svg.axis()
            .scale(y)
            .orient("left");

        var tip = d3.tip()
          .attr('class', 'd3-tip')
          .offset([-10, 0])
          .html(function(d) {
            return "<strong>Log Count:</strong> <span style='color:#fff'>" + d.count_items + "</span>";
          })


        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.call(tip);

        d3.json("{% url "log_count_by_day" %}", function(error, data) {
          data.forEach(function(d) {
            formatDate = d3.time.format("%H h")
            d.hour = formatDate(parseDate(d.hour))
            d.count_items = +d.count_items;
          });

          x.domain(data.map(function(d) { return d.hour; }));

          // y.domain(d3.extent(data, function(d) { return d.count_items; }));
          y.domain([0, d3.max(data, function(d) { return d.count_items; })]);

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

          svg.append("g")
              .attr("class", "y axis")
              .call(yAxis)
            .append("text")
              .attr("transform", "rotate(-90)")
              .attr("y", -38)
              .attr("dy", ".71em")
              .style("text-anchor", "end")
              .text("Log count");

          svg.selectAll(".bar")
                .data(data)
              .enter().append("rect")
                .attr("class", "bar")
                .attr("x", function(d) { return x(d.hour); })
                .attr("width", x.rangeBand())
                .attr("y", function(d) { return y(d.count_items); })
                .attr("height", function(d) { return height - y(d.count_items); })
                .on('mouseover', tip.show)
                .on('mouseout', tip.hide)
        });
      }
      else if ($("#chart1Weekly").is(":checked")) {
        var margin = {top: 40, right: 20, bottom: 30, left: 40},
        width = 960 - margin.left - margin.right,
        height = 500 - margin.top - margin.bottom;

        // var parseDate = d3.time.format("%Y-%m-%d").parse; // for dates like "2014-01-01"
        var parseDate = d3.time.format("%Y-%m-%dT%H:%M:%SZ").parse;  // for dates like "2014-01-01T00:00:00Z"
        var x = d3.scale.ordinal()
          .rangeBands([0, width], 0.2);

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

        var xAxis = d3.svg.axis()
            .scale(x)
            .orient("bottom");

        var yAxis = d3.svg.axis()
            .scale(y)
            .orient("left");

        var tip = d3.tip()
          .attr('class', 'd3-tip')
          .offset([-10, 0])
          .html(function(d) {
            return "<strong>Log Count:</strong> <span style='color:#fff'>" + d.count_items + "</span>";
          })


        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.call(tip);

        d3.json("{% url "log_count_by_week" %}", function(error, data) {
          data.forEach(function(d) {
            formatDate = d3.time.format("%d-%b-%y")
            d.day = formatDate(parseDate(d.day))
            d.count_items = +d.count_items;
          });

          x.domain(data.map(function(d) { return d.day; }));

          // y.domain(d3.extent(data, function(d) { return d.count_items; }));
          y.domain([0, d3.max(data, function(d) { return d.count_items; })]);

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

          svg.append("g")
              .attr("class", "y axis")
              .call(yAxis)
            .append("text")
              .attr("transform", "rotate(-90)")
              .attr("y", -38)
              .attr("dy", ".71em")
              .style("text-anchor", "end")
              .text("Log count");

          svg.selectAll(".bar")
                .data(data)
              .enter().append("rect")
                .attr("class", "bar")
                .attr("x", function(d) { return x(d.day); })
                .attr("width", x.rangeBand())
                .attr("y", function(d) { return y(d.count_items); })
                .attr("height", function(d) { return height - y(d.count_items); })
                .on('mouseover', tip.show)
                .on('mouseout', tip.hide)
        });
      }
    $('#chart').slideDown('slow');

    })
  });
  $('#chart').hide()
  $('input:radio:first').trigger('change');
});
</script>
</body>
</html>
对于
按周记录计数

[{"day": "2017-09-28T00:00:00Z", "count_items": 2}, {"day": "2017-09-30T00:00:00Z", "count_items": 2}]

我的目标是实现类似于小提琴的东西:在填充下一个图形之前,一个图形中隐藏了什么,有人能帮我找出代码的错误吗?还有没有其他更好的方法来调整此代码以提高性能,而不是在
if
else if
循环中编写几乎相同的代码,由于两个图形几乎相同,但数据和x轴不同。

问题在于每次更改选择时都要添加新的SVG


var svg=d3.select(“body”).append(“svg”)
这个错误有点愚蠢,没有将svg追加到
body
,而是应该将它追加到id
#图表
var svg=d3.select(“chart”).append(“svg”)

这最终解决了问题。
工作代码

[{"day": "2017-09-28T00:00:00Z", "count_items": 2}, {"day": "2017-09-30T00:00:00Z", "count_items": 2}]