Skip to content

Instantly share code, notes, and snippets.

@ChandrakantThakkarDigiCorp
Last active May 27, 2017 07:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChandrakantThakkarDigiCorp/c8ce360f8bc896ffa6c16d30a4cd026b to your computer and use it in GitHub Desktop.
Save ChandrakantThakkarDigiCorp/c8ce360f8bc896ffa6c16d30a4cd026b to your computer and use it in GitHub Desktop.
Pie Chart D3 V4
<html>
<body>
<script>
window.addEventListener('resize', function (event) {
$("#chart").width(window.innerWidth * 0.9);
$("#chart").height(window.innerHeight);
});
</script>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="pieChart.js"></script>
<div id="chart" style="width: 900;height: 500">
</div>
<script>
var data=[{ city:"Deesa", beautifulRatio:30},{ city:"Patan", beautifulRatio:20},{ city:"Ahmedabad", beautifulRatio:15},{ city:"Bhabhar", beautifulRatio:35},{ city:"BHakhasar", beautifulRatio:50}];
$("#chart").empty();
var pieChartConfig = {
mainDiv: "#chart",
colorRange: ["#f44842", "#f4b841", "#f4f141", "#46f441", "#41f4d9", "#4941f4", "#f441d6"],
data: data,
caption:"city",
tooltipLable:"City",
value:"beautifulRatio"
};
var pieChart = new pieChart(pieChartConfig);
</script>
</body>
</html>
MIT License
Copyright (c) [2017] [Chandrakant Thakkar]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
function pieChart(config) {
function setReSizeEvent(data) {
var resizeTimer;
window.removeEventListener('resize', function() {});
window.addEventListener('resize', function(event) {
if (resizeTimer !== false) {
clearTimeout(resizeTimer);
}
resizeTimer = setTimeout(function() {
$(data.mainDiv).empty();
drawPieChart(data);
clearTimeout(resizeTimer);
}, 500);
});
}
drawPieChart(config);
setReSizeEvent(config);
}
function drawPieChart(config) {
var data = config.data;
var colorRange = config.colorRange;
var mainDiv = config.mainDiv;
var mainDivName = mainDiv.substr(1, mainDiv.length);
var caption = config.caption;
var tooltipLable = config.tooltipLable;
var value = config.value;
d3.select(mainDiv).append("svg").attr("width", $(mainDiv).width()).attr("height", $(mainDiv).height());
var svg = d3.select(mainDiv + " svg"),
margin = {
top: 20,
right: 20,
bottom: 30,
left: 40
},
width = +svg.attr("width") - margin.left - margin.right,
height = +svg.attr("height") - margin.top - margin.bottom;
var g = svg.append("g").attr("transform", "translate(" + width / 2 + "," + height / 2 + ")");
var color = d3.scaleOrdinal(colorRange);
var radius = Math.min(width, height) * 0.5;
var pie = d3.pie()
.sort(null)
.value(function(d) {
return d[value];
});
var path = d3.arc()
.outerRadius(radius - 20)
.innerRadius(0)
.cornerRadius(5);
var label = d3.arc()
.outerRadius(radius - 40)
.innerRadius(radius - 40);
var arc = g.selectAll(".arc")
.data(pie(data))
.enter().append("g")
.classed("arc", true);
var pathArea = arc.append("path")
.attr("d", path)
.attr("id", function(d, i) {
return "arc-" + i
})
.attr("style", "fill-opacity: 0.85;")
.attr("fill", function(d) {
return color(d.data[caption]);
})
.attr("data", function(d) {
d.data["percentage"] = (d.endAngle - d.startAngle) / (2 * Math.PI) * 100;
return JSON.stringify(d.data);
});
//CBT:give blinking effect on mouse over
pathArea.on("mouseover", function(d) {
var currentEl = d3.select(this);
currentEl.attr("style", "fill-opacity:1;");
var fadeInSpeed = 120;
d3.select("#tooltip_" + mainDivName)
.transition()
.duration(fadeInSpeed)
.style("opacity", function() {
return 1;
});
d3.select("#tooltip_" + mainDivName)
.attr("transform", function(d) {
var mouseCoords = d3.mouse(this.parentNode);
var xCo = mouseCoords[0] + 10;;
var yCo = mouseCoords[0] + 10;
return "translate(" + xCo + "," + yCo + ")";
});
//CBT:calculate tooltips text
var tooltipData = JSON.parse(currentEl.attr("data"));
var tooltipsText = "";
d3.selectAll("#tooltipText_" + mainDivName).text("");
var yPos = 0;
d3.selectAll("#tooltipText_" + mainDivName).append("tspan").attr("x", 0).attr("y", yPos * 10).attr("dy", "1.9em").text(tooltipLable + ": " + d3.format("0.2f")(tooltipData["percentage"]) + "%");
var dims = helpers.getDimensions("tooltipText_" + mainDivName);
d3.selectAll("#tooltipText_" + mainDivName + " tspan")
.attr("x", dims.w + 2);
d3.selectAll("#tooltipRect_" + mainDivName)
.attr("width", dims.w + 10)
.attr("height", dims.h + 20);
});
pathArea.on("mousemove", function(d) {
var currentEl = d3.select(this);
d3.selectAll("#tooltip_" + mainDivName)
.attr("transform", function(d) {
var mouseCoords = d3.mouse(this.parentNode);
var xCo = mouseCoords[0] + 10;
var yCo = mouseCoords[1] + 10;
return "translate(" + xCo + "," + yCo + ")";
});
});
pathArea.on("mouseout", function(d) {
var currentEl = d3.select(this);
currentEl.attr("style", "fill-opacity:0.85;");
d3.select("#tooltip_" + mainDivName)
.style("opacity", function() {
return 0;
});
d3.select("#tooltip_" + mainDivName).attr("transform", function(d, i) {
var x = -500;
var y = -500;
return "translate(" + x + "," + y + ")";
});
});
//CBT:tooltips start
var tooltipg = g.append("g")
.attr("font-family", "sans-serif")
.attr("font-size", 10)
.attr("text-anchor", "end")
.attr("id", "tooltip_" + mainDivName)
.attr("style", "opacity:0")
.attr("transform", "translate(-500,-500)");
tooltipg.append("rect")
.attr("id", "tooltipRect_" + mainDivName)
.attr("x", 0)
.attr("width", 120)
.attr("height", 80)
.attr("opacity", 0.8)
.style("fill", "#000000");
tooltipg
.append("text")
.attr("id", "tooltipText_" + mainDivName)
.attr("x", 30)
.attr("y", 15)
.attr("fill", "#fff")
.style("font-size", 10)
.style("font-family", "arial")
.text(function(d, i) {
return "";
});
//CBT:tooltips end
arc.append("text")
.attr("transform", function(d) {
return "translate(" + label.centroid(d) + ")";
})
.attr("dy", "0.35em")
.text(function(d) {
return d.data[value];
});
arc.append("text")
.attr("dx", 30)
.attr("dy", -5)
.append("textPath")
.attr("xlink:href", function(d, i) {
return "#arc-" + i;
})
.text(function(d) {
return d.data[caption].toString();
})
}
var helpers = {
getDimensions: function(id) {
var el = document.getElementById(id);
var w = 0,
h = 0;
if (el) {
var dimensions = el.getBBox();
w = dimensions.width;
h = dimensions.height;
} else {
console.log("error: getDimensions() " + id + " not found.");
}
return {
w: w,
h: h
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment