d3成神之路(五):扇形图,饼图
【摘要】
制作扇形其实也是使用 svg的 path 这个属性, 重要的是计算各个扇形区域的点,与弧度 效果图
首先需要使用源数据 生成相应的弧度信息
使用d3.pie()
const data = [1,...
制作扇形其实也是使用 svg的 path 这个属性,
重要的是计算各个扇形区域的点,与弧度
效果图
首先需要使用源数据 生成相应的弧度信息
使用d3.pie()
const data = [1, 1, 2, 3, 5, 8, 13, 21];
const arcs = d3.pie()(data);
- 1
- 2
生成弧度后 再使用 d3.arc()
来进行绘制 path
const arc = d3.arc()
.innerRadius(0)
.outerRadius(Math.min(innerWidth, innerHeight) / 2 - 1)
- 1
- 2
- 3
这里还学到一个技巧 就是 使用源数据的某一个属性来生成一个颜色
const color = d3.scaleOrdinal()
.domain(data.map(d => d.name))
.range(d3.quantize(t => d3.interpolateSpectral(t * 0.8 + 0.1), data.length).reverse())
- 1
- 2
- 3
详细代码
<!DOCTYPE html>
<html>
<head>
<title>基础饼图</title>
<link rel="stylesheet" href="../../css/index.css">
</head>
<body>
<svg id="main" width="800" height="600"></svg>
</div>
<script src="../../js/d3.min.js"></script>
<script src="../../js/mchart.js"></script>
<script>
function getSvgInfo() {
const svg = d3.select("#main")
const width = svg.attr('width')
const height = svg.attr('height')
const margin = { top: 30, right: 60, bottom: 30, left: 60 }
const innerHeight = height - margin.top - margin.bottom
const innerWidth = width - margin.left - margin.right
const config = {
colors: [
"#5470c6",
"#91cc75",
"#fac858",
"#ee6666",
"#73c0de",
"#3ba272",
"#fc8452",
"#9a60b4",
"#ea7ccc"
],
opacity: 0.8,
tickTxt: {
fontSize: '2em',
color: '#6E7079'
},
chartTitle: {
text: '基础饼图',
fontSize: '18px',
color: '#464646'
}
}
return {
svg,
width,
height,
margin,
innerHeight,
innerWidth,
config
}
}
const data = [
{ value: 1048, name: '搜索引擎' },
{ value: 735, name: '直接访问' },
{ value: 580, name: '邮件营销' },
{ value: 484, name: '联盟广告' },
{ value: 300, name: '视频广告' }
]
const {
svg,
width,
height,
margin,
innerHeight,
innerWidth,
config
} = getSvgInfo()
const chart = svg.append('g')
.attr('id', 'maingroup')
.attr('transform', `translate(${margin.left},${margin.top})`)
const arc = d3.arc()
.innerRadius(0)
.outerRadius(Math.min(innerWidth, innerHeight) / 2 - 1)
const color = d3.scaleOrdinal()
.domain(data.map(d => d.name))
.range(d3.quantize(t => d3.interpolateSpectral(t * 0.8 + 0.1), data.length).reverse())
const pie = d3.pie()
.sort(null)
.value(d => d.value)
const arcs = pie(data);
chart.append("g")
.attr("stroke", "white")
.selectAll("path")
.data(arcs)
.join("path")
.attr('transform', `translate(300,300)`)
.attr("fill", d => color(d.data.name))
.attr("d", arc)
setChartTitle(chart)
function setChartTitle(chart) {
chart.append('text').text(config.chartTitle.text)
.attr('font-size', config.chartTitle.fontSize)
.attr('color', config.chartTitle.color)
.attr('transform', `translate(${innerWidth / 2}, ${-10})`)
.attr('text-anchor', 'middle')
.attr('font-weight', 'bold')
}
</script>
</body>
</html>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
- 123
https://github.com/d3/d3-shape/blob/v3.0.1/README.md#pies
这里再补充一下 d3-shape 这个库的一些特性
Arcs 弧度
Pies 饼图
Lines 线性
Areas 面积
Curves 曲线
Custom Curves 自定义曲线
Links 连线
Symbols 多边形
Custom Symbol Types 自定义 多边形
Stacks 堆积,叠加
文章来源: fizzz.blog.csdn.net,作者:拿我格子衫来,版权归原作者所有,如需转载,请联系作者。
原文链接:fizzz.blog.csdn.net/article/details/120130340
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)