Created
May 22, 2016 19:50
-
-
Save anonymous/1679ed5604d57c7c8d038683cb0cee2a to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/ravahipiye
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="http://dimplejs.org/dist/dimple.v2.1.6.min.js"></script> | |
<style id="jsbin-css"> | |
.dimple-example { | |
height: 400px; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="dimple-example"></div> | |
<script id="jsbin-javascript"> | |
var svg = d3.select('.dimple-example') | |
.append('svg') | |
.attr('width', "100%") | |
.attr('height', "100%"); | |
d3.tsv( 'http://dimplejs.org/data/example_data.tsv' , function ( data ) { | |
var myChart = new dimple.chart(svg, data); | |
myChart.setMargins(0, 0, 200, 0); // This can change at any time. | |
myChart.addMeasureAxis("p", "Unit Sales"); | |
var ring = myChart.addSeries("Owner", dimple.plot.pie); | |
ring.innerRadius = "75%"; | |
myChart.addLegend(500, 20, 90, 300, "left"); | |
var svgWidth = svg.style('width').replace('px',""); | |
var svgHeight = svg.style('height').replace('px',""); | |
var textCenterX = parseInt( (svgWidth - 250 ) / 2, 10 ); | |
var textCenterY = parseInt( ( svgHeight - 15) / 2, 10 ); | |
// needs to calculate ( width height ) of the text before it gets inserted or after... | |
svg | |
.select('g') | |
.append('text') | |
.text('$432M') | |
.attr('x', textCenterX ) // This needs to be calculated dynamically | |
.attr('y', textCenterY) // This needs to be calculated dynamically | |
.attr('font-size', "28px"); | |
console.log( svg.style('width').replace('px',"") ); | |
console.log( svg.style('height').replace('px',"") ); | |
myChart.defaultColors = [ | |
new dimple.color("#7DC855", "blue", 1), | |
new dimple.color("#358ED7", "", 1), | |
new dimple.color("red", "green", 1), | |
new dimple.color("violet", "green", 1), | |
new dimple.color("yellow", "green", 1), | |
new dimple.color("orange", "green", 1), | |
new dimple.color("purple", "green", 1), | |
]; | |
myChart.draw(); | |
}); | |
</script> | |
<script id="jsbin-source-css" type="text/css">.dimple-example { | |
height: 400px; | |
}</script> | |
<script id="jsbin-source-javascript" type="text/javascript">var svg = d3.select('.dimple-example') | |
.append('svg') | |
.attr('width', "100%") | |
.attr('height', "100%"); | |
d3.tsv( 'http://dimplejs.org/data/example_data.tsv' , function ( data ) { | |
var myChart = new dimple.chart(svg, data); | |
myChart.setMargins(0, 0, 200, 0); // This can change at any time. | |
myChart.addMeasureAxis("p", "Unit Sales"); | |
var ring = myChart.addSeries("Owner", dimple.plot.pie); | |
ring.innerRadius = "75%"; | |
myChart.addLegend(500, 20, 90, 300, "left"); | |
var svgWidth = svg.style('width').replace('px',""); | |
var svgHeight = svg.style('height').replace('px',""); | |
var textCenterX = parseInt( (svgWidth - 250 ) / 2, 10 ); | |
var textCenterY = parseInt( ( svgHeight - 15) / 2, 10 ); | |
// needs to calculate ( width height ) of the text before it gets inserted or after... | |
svg | |
.select('g') | |
.append('text') | |
.text('$432M') | |
.attr('x', textCenterX ) // This needs to be calculated dynamically | |
.attr('y', textCenterY) // This needs to be calculated dynamically | |
.attr('font-size', "28px"); | |
console.log( svg.style('width').replace('px',"") ); | |
console.log( svg.style('height').replace('px',"") ); | |
myChart.defaultColors = [ | |
new dimple.color("#7DC855", "blue", 1), | |
new dimple.color("#358ED7", "", 1), | |
new dimple.color("red", "green", 1), | |
new dimple.color("violet", "green", 1), | |
new dimple.color("yellow", "green", 1), | |
new dimple.color("orange", "green", 1), | |
new dimple.color("purple", "green", 1), | |
]; | |
myChart.draw(); | |
});</script></body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.dimple-example { | |
height: 400px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var svg = d3.select('.dimple-example') | |
.append('svg') | |
.attr('width', "100%") | |
.attr('height', "100%"); | |
d3.tsv( 'http://dimplejs.org/data/example_data.tsv' , function ( data ) { | |
var myChart = new dimple.chart(svg, data); | |
myChart.setMargins(0, 0, 200, 0); // This can change at any time. | |
myChart.addMeasureAxis("p", "Unit Sales"); | |
var ring = myChart.addSeries("Owner", dimple.plot.pie); | |
ring.innerRadius = "75%"; | |
myChart.addLegend(500, 20, 90, 300, "left"); | |
var svgWidth = svg.style('width').replace('px',""); | |
var svgHeight = svg.style('height').replace('px',""); | |
var textCenterX = parseInt( (svgWidth - 250 ) / 2, 10 ); | |
var textCenterY = parseInt( ( svgHeight - 15) / 2, 10 ); | |
// needs to calculate ( width height ) of the text before it gets inserted or after... | |
svg | |
.select('g') | |
.append('text') | |
.text('$432M') | |
.attr('x', textCenterX ) // This needs to be calculated dynamically | |
.attr('y', textCenterY) // This needs to be calculated dynamically | |
.attr('font-size', "28px"); | |
console.log( svg.style('width').replace('px',"") ); | |
console.log( svg.style('height').replace('px',"") ); | |
myChart.defaultColors = [ | |
new dimple.color("#7DC855", "blue", 1), | |
new dimple.color("#358ED7", "", 1), | |
new dimple.color("red", "green", 1), | |
new dimple.color("violet", "green", 1), | |
new dimple.color("yellow", "green", 1), | |
new dimple.color("orange", "green", 1), | |
new dimple.color("purple", "green", 1), | |
]; | |
myChart.draw(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment