You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
491 B
HTML
34 lines
491 B
HTML
|
5 years ago
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<style>
|
||
|
|
.arc text {
|
||
|
|
font: 18px arial;
|
||
|
|
text-anchor: middle;
|
||
|
|
}
|
||
|
|
|
||
|
|
.arc path {
|
||
|
|
stroke: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.title {
|
||
|
|
fill: green;
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: italic;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script src="https://d3js.org/d3.v4.min.js"></script>
|
||
|
|
|
||
|
|
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<svg width = "400" height = "450"></svg>
|
||
|
|
<script src="svgChart3.js"></script>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|
||
|
|
|