Skip to content

Commit 8aa4dd6

Browse files
author
xuwenyihust
committed
Some updates.
1 parent 404ebdc commit 8aa4dd6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/static/js/count.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ d3.json("/data/counts", function(error, data) {
8484
count.selectAll("dot")
8585
.data(data)
8686
.enter().append("circle")
87-
.attr("r", 3)
87+
.attr("r", 2)
8888
.attr("cx", function(d) { return 9+count_x(d.Time); })
8989
.attr("cy", function(d) { return count_y(d.Count); })
90-
.style("fill", "blue")
90+
.style("fill", "steelblue")
9191

9292
.on("mouseover", function(d) {
9393
tooltip_count.transition()

0 commit comments

Comments
 (0)