-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscriptVNtechexport.js
137 lines (111 loc) · 3.48 KB
/
scriptVNtechexport.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
//EXPAT DATA CIRCLES
var margin = {top: 20, right: 20, bottom: 70, left: 40},
width = 600 - margin.left - margin.right,
height = 300 - margin.top - margin.bottom;
var data = [
{date: '2000', value: 683655000},
{date: '2005', value: 873255442},
{date: '2010', value: 4020110739},
{date: '2015', value: 38735943417},
]
// Parse the date / time
// var parseDate = d3.time.format("%Y-%m").parse;
var x = d3.scaleBand()
.range([0, width])
// .padding(0.1)
.domain(data.map(function(d) { return d.date }));
var yDomain = [483655000, 44000000000];
var y = d3.scaleLinear()
.range([height, 0])
.domain(yDomain);
var xAxis = d3.axisBottom()
.scale(x)
// .tickFormat(d3.timeFormat("%Y-%Y"));
var yAxis = d3.axisLeft()
.scale(y)
.ticks(10);
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 + ")");
let scaleFactor = 20;
svg.selectAll("circle")
.data(data)
.enter()
.append("circle")
.style("fill", "purple")
.attr("cx", d => x(d.date) +68)
.attr("cy", d => y(d.value))
.attr("r", 10)
.on('mouseover', function(d) {
console.log(this);
d3.select(this)
.style('fill', 'grey');
})
.on('mouseleave',function(d){
d3.select(this)
.style('fill', 'purple');
})
.append("title") // Use tooltips instead of squashing in the x axis labels
.text(d => d.value)
// .on('mouseover', function(d) {
// d3.select(this)
// .attr('fill', 'red')
// // groups.selectAll('circle')
// // .filter(d => x(d.value))
// // .attr('opacity', 0.1);
// }).on('mouseleave', function(d) {
// groups.selectAll('circle')
// .attr('opacity', 1);
// });
// svg.selectAll("rect")
// .data(data)
// .enter()
// .append("rect")
// .style("fill", "steelblue")
// .attr("x", function(d) { return x(d.date); })
// .attr("width", x.bandwidth() )
// // .attr("y", function(d) { return y(d.value); })
// .attr("y", d => {
// return y(d.value);
// })
// .attr("height", function(d) { return y(0) - y(d.value); });
// d3.csv("data.csv", function(error, data) {
// console.log(data)
// data.forEach(function(d) {
// // d.date = parseDate(d.date);
// d.value = +d.value;
// });
// x.domain(data.map(function(d) { return d.date; }));
// y.domain([0, d3.max(data, function(d) { return d.value; })]);
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.selectAll("text")
.style("text-anchor", "end")
.attr("dx", "-.8em")
.attr("dy", "-.25em")
.attr("transform", "rotate(-70)" )
.attr("fill", "grey");
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Value ($)");
// svg.selectAll("bar")
// .data(data)
// .enter()
// .append("rect")
// .style("fill", "steelblue")
// .attr("x", function(d) { return x(d.date); })
// .attr("width", x.rangeBand())
// .attr("y", function(d) { return y(d.value); })
// .attr("height", function(d) { return height - y(d.value); });
// });