larger fonts for chart

This commit is contained in:
Ilya Ig. Petrov 2015-11-28 18:04:33 +05:00
parent 71ee239331
commit ab1119fa0a
6 changed files with 29 additions and 44 deletions

View File

@ -1,3 +1,3 @@
# Антизапрет PAC-скрипт # Антизапрет PAC-скрипт
![Host Lookup Chart: Time-Memory, Hit-Miss](./chart/preview/host-lookup-chart.png) ![Host Lookup Chart: Time-Memory, Hit-Miss](./chart/host-lookup-chart.png)

View File

@ -1,18 +1,2 @@
Dual-scale-D3-Bar-Chart Dual-scale-D3-Bar-Chart
======================== ========================
This is a demo for creating dual-scaled bar charts using D3.js
I came across this task when I was working on a simple HTML project. As I googled around and, unfortunately, could not find any example, I decided to do it myself.
Please bear in mind that I am new to D3.js and this is actually my first time using it. I had heard of D3.js but never used it.
Hope that this could be of use to someone. All suggestions for improvement are welcome.
Note: since d3.js uses ajax to load tsv files, the files contained in the src folder cannot be run in a browser using file:///. Execute the following command under the src directory to create a HTTP server.
python -m SimpleHTTPServer
Use the following URL to access index.html
http://localhost:8000/index.html

BIN
chart/host-lookup-chart.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

View File

@ -1,9 +1,9 @@
approach memHit timeHit memMiss timeMiss approach memHit timeHit memMiss timeMiss
hosts-reversed-binary 109 3704594 96 602820 Hosts reversed binary 109 3704594 96 602820
hosts-binary 351 3718253 210 605188 Hosts binary 351 3718253 210 605188
hosts-plain-switch 367 2874843 88 607200 Hosts plain switch 367 2874843 88 607200
hosts-hash 347 5062512 207 609278 Hosts hash 347 5062512 207 609278
hosts-switch 88 894410 77 614169 Hosts switch 88 894410 77 614169
ips-switch 37 1348111 72 597439 IPs switch 37 1348111 72 597439
ips-indexOf 35 4853437 72 599850 IPs indexOf 35 4853437 72 599850
ips-binary 31 3542401 77 602958 IPs binary 31 3542401 77 602958

1 approach memHit timeHit memMiss timeMiss
2 hosts-reversed-binary Hosts reversed binary 109 3704594 96 602820
3 hosts-binary Hosts binary 351 3718253 210 605188
4 hosts-plain-switch Hosts plain switch 367 2874843 88 607200
5 hosts-hash Hosts hash 347 5062512 207 609278
6 hosts-switch Hosts switch 88 894410 77 614169
7 ips-switch IPs switch 37 1348111 72 597439
8 ips-indexOf IPs indexOf 35 4853437 72 599850
9 ips-binary IPs binary 31 3542401 77 602958

View File

@ -3,7 +3,7 @@
<style> <style>
body { body {
font: 10px sans-serif; font: 12px Tahoma;
} }
.y.axisRight text { .y.axisRight text {
@ -22,19 +22,19 @@ body {
} }
.timeMiss { .timeMiss {
fill: blue;
}
.memMiss {
fill: red; fill: red;
} }
.memMiss {
fill: blue;
}
.timeHit { .timeHit {
fill: steelblue; fill: orange;
} }
.memHit { .memHit {
fill: orange; fill: steelblue;
} }
.x.axis path { .x.axis path {
@ -95,8 +95,8 @@ d3.tsv("data.tsv", type, function(error, data) {
.append("text") .append("text")
.attr("y", 6) .attr("y", 6)
.attr("dy", "-2em") .attr("dy", "-2em")
.style("text-anchor", "end") .attr("dx", "-2em")
.style("text-anchor", "end") .style("text-anchor", "right")
.text("bytes per request"); .text("bytes per request");
svg.append("g") svg.append("g")
@ -106,8 +106,8 @@ d3.tsv("data.tsv", type, function(error, data) {
.append("text") .append("text")
.attr("y", 6) .attr("y", 6)
.attr("dy", "-2em") .attr("dy", "-2em")
.attr("dx", "2em") .attr("dx", "-1em")
.style("text-anchor", "end") .style("text-anchor", "start")
.text("ns per request"); .text("ns per request");
bars = svg.selectAll(".bar").data(data).enter(); bars = svg.selectAll(".bar").data(data).enter();
@ -141,11 +141,12 @@ d3.tsv("data.tsv", type, function(error, data) {
.attr("height", (d,i,j) => height - y1(d.timeMiss) ); .attr("height", (d,i,j) => height - y1(d.timeMiss) );
// add legend // add legend
var color_hash = { 0 : ["memMiss", "blue"], var color_hash = {
1 : ["timeMiss", "red"], 0 : ["Time / Miss", "red"],
2 : ["memHit", "steelblue"], 1 : ["Memory / Miss", "blue"],
3 : ["timeHit", "orange"] 2 : ["Time / Hit", "orange"],
} 3 : ["Memory / Hit", "steelblue"]
}
var legend = svg.append("g") var legend = svg.append("g")
.attr("class", "legend") .attr("class", "legend")
.attr("x", width - 65) .attr("x", width - 65)
@ -162,14 +163,14 @@ d3.tsv("data.tsv", type, function(error, data) {
return; // Approach. return; // Approach.
var g = d3.select(this); var g = d3.select(this);
g.append("rect") g.append("rect")
.attr("x", width - 65) .attr("x", width - x.rangeBand()*3.5 - 15)
.attr("y", i*25) .attr("y", i*25)
.attr("width", 10) .attr("width", 10)
.attr("height", 10) .attr("height", 10)
.style("fill", color_hash[i][1]); .style("fill", color_hash[i][1]);
g.append("text") g.append("text")
.attr("x", width - 50) .attr("x", width - x.rangeBand()*3.5)
.attr("y", i * 25 + 8) .attr("y", i * 25 + 8)
.attr("height",30) .attr("height",30)
.attr("width",100) .attr("width",100)