制作SelectBox或Combobox javascript

时间:2016-12-19 20:32:48

标签: javascript html d3.js drop-down-menu

我现在开始使用javascript并使用d3.js制作infovis,我遇到了问题.... 我有以下代码来制作条形图,数据集在data.tsv文件中定义。条形图应该显示给定年份和国家的汽车和摩托车(每个酒吧一个)的登记值。在X轴上它应该显示车辆类型:“汽车”和“摩托车”,在y轴上它应该显示给定国家和年份的汽车和摩托车登记值(我想选择年份)在组合框中)。 在数据集中,我有几年可用,我的目标是在组合框中选择其中一个,并可视化当年汽车和摩托车注册的条形图。现在在我的代码中,我只选择一个国家来查看数据。 我已经尝试了一些方法,但到目前为止都没有... 现在我有以下代码,它给我一个错误“TypeError:无法将undefined或null转换为object”在我获取每列var elements = Object.keys(data[0])的值的行上。 现在我也只选择一个国家来显示数据,我现在需要的是将选择框的年份仅用于特定国家/地区,这在var data = data.filter(function(d){return d.geo == 'Portugal';})行中定义

其中包含js代码的HTML文件:

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

.rectangle {
	fill: steelblue;
}
.rectangle:hover {
	fill: orange;
}
.axis {
  font: 10px sans-serif;
}

.axis path,
.axis line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
}
</style>
</head>
<body>
<div id="drop" align=center></div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>

var margin = {top: 80, right: 180, bottom: 80, left: 180},
    width = 960 - margin.left - margin.right,
    height = 500 - margin.top - margin.bottom;

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

d3.tsv("data.tsv", function(error, data){

	// filter country
	var data = data.filter(function(d){return d.geo == 'Portugal';});
	// Get every column value
	var elements = Object.keys(data[0])
		.filter(function(d){
			return ((d != "geo") & (d != "vehicle"));
		});
	var selection = elements[0];

	var y = d3.scale.linear()
			.domain([0, d3.max(data, function(d){
				return +d[selection];
			})])
			.range([height, 0]);

	var x = d3.scale.ordinal()
			.domain(data.map(function(d){ return d.vehicle;}))
			.rangeBands([0, width]);


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

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

	svg.append("g")
    	.attr("class", "x axis")
    	.attr("transform", "translate(0," + height + ")")
    	.call(xAxis)
    	.selectAll("text")
    	.style("font-size", "8px")
      	.style("text-anchor", "end")
      	.attr("dx", "-.8em")
      	.attr("dy", "-.55em")
      	.attr("transform", "rotate(-90)" );


 	svg.append("g")
    	.attr("class", "y axis")
    	.call(yAxis);

	svg.selectAll("rectangle")
		.data(data)
		.enter()
		.append("rect")
		.attr("class","rectangle")
		.attr("width", width/data.length)
		.attr("height", function(d){
			return height - y(+d[selection]);
		})
		.attr("x", function(d, i){
			return (width / data.length) * i ;
		})
		.attr("y", function(d){
			return y(+d[selection]);
		})
		.append("title")
		.text(function(d){
			return d.vehicle + " : " + d[selection];
		});

	var selector = d3.select("#drop")
    	.append("select")
    	.attr("id","dropdown")
    	.on("change", function(d){
        	selection = document.getElementById("dropdown");

        	y.domain([0, d3.max(data, function(d){
				return +d[selection.value];})]);

        	yAxis.scale(y);

        	d3.selectAll(".rectangle")
           		.transition()
	            .attr("height", function(d){
					return height - y(+d[selection.value]);
				})
				.attr("x", function(d, i){
					return (width / data.length) * i ;
				})
				.attr("y", function(d){
					return y(+d[selection.value]);
				})
           		.ease("linear")
           		.select("title")
           		.text(function(d){
           			return d.vehicle + " : " + d[selection.value];
           		});
      
           	d3.selectAll("g.y.axis")
           		.transition()
           		.call(yAxis);

         });

    selector.selectAll("option")
      .data(elements)
      .enter().append("option")
      .attr("value", function(d){
        return d;
      })
      .text(function(d){
        return d;
      })


});

</script>

</body>

数据集的一个示例(data.tsv):

geo vehicle 2009 2010
Portugal Cars 100000 140000
Portugal Motorcycles 30000 65000
France Cars 160000 120000
France Motorcycles 70000 90000

如果有人能帮忙我会感恩。

0 个答案:

没有答案