Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
张小浪
vue项目使用D3js实现3D饼图
提交
b09c972a
V
vue项目使用D3js实现3D饼图
项目概览
张小浪
/
vue项目使用D3js实现3D饼图
与 Fork 源项目一致
Fork自
inscode / VueJS
通知
2
Star
7
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
V
vue项目使用D3js实现3D饼图
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
b09c972a
编写于
5月 09, 2023
作者:
6
64584ef1ecd7b40dc29f18f5
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Auto commit
上级
867acc1f
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
64 addition
and
4 deletion
+64
-4
src/components/Pie3D.vue
src/components/Pie3D.vue
+1
-2
src/utils/pie.js
src/utils/pie.js
+63
-2
未找到文件。
src/components/Pie3D.vue
浏览文件 @
b09c972a
<
template
>
<div>
<p>
D3JS实现的3D饼图
</p>
<div
id=
"abc"
></div>
</div>
</
template
>
...
...
@@ -13,7 +12,7 @@ let config = reactive({
color
:[
"
#5470c6
"
,
"
#91cc75
"
,
"
#fac858
"
,
"
#ee6666
"
,
"
#73c0de
"
],
//颜色
sfShowLabel
:
true
,
//是否显示文本标线
sfLegend
:
true
,
//是否显示图例
legendOrient
:
'
horizontal
'
,
//图例,横向、纵向
legendOrient
:
'
vertical
'
,
//图例,横向horizontal、纵向 vertical
legendType
:
'
scroll
'
,
//图例类型,普通图例plain还是 scroll翻页图例
})
//基础数据
...
...
src/utils/pie.js
浏览文件 @
b09c972a
...
...
@@ -176,8 +176,20 @@ export default function pie(id, width, height, data, x, y, rx, ry, h, config,ir=
.
enter
()
.
append
(
'
g
'
);
}
else
{
//纵向
console
.
log
(
'
纵向
'
)
//纵向 vertical
legendBox
=
legendSvg
.
attr
(
'
height
'
,
400
)
.
attr
(
'
width
'
,
200
)
.
style
(
'
top
'
,
0
)
.
style
(
'
left
'
,
7
)
.
append
(
'
g
'
)
.
attr
(
'
id
'
,
'
legend_svg
'
);
legend
=
legendBox
.
selectAll
(
'
g
'
)
.
data
(
data
)
.
enter
()
.
append
(
'
g
'
)
.
attr
(
'
transform
'
,(
d
,
i
)
=>
{
return
`translate(0,
${
i
*
20
}
)`
});
}
//创建图例前的小圆点样式
let
legendItembox
=
legend
.
append
(
'
circle
'
)
...
...
@@ -355,6 +367,55 @@ export default function pie(id, width, height, data, x, y, rx, ry, h, config,ir=
}
})
}
}
else
{
let
maxWidth
=
0
//获取最大宽度
legend
.
each
(
function
(){
if
(
maxWidth
<
d3
.
select
(
this
).
node
().
getBBox
().
width
){
maxWidth
=
d3
.
select
(
this
).
node
().
getBBox
().
width
}
})
if
(
config
.
legendType
===
'
scroll
'
){
console
.
log
(
'
翻页
'
)
}
else
{
//普通图例
//计算分组
let
totalPage
=
1
//总页码
let
legendNumHeight
=
0
//初始高度
let
rowList
=
[]
//普通图例一列显示多少个图例
legend
.
each
(
function
(
d
,
i
){
legendNumHeight
+=
20
if
(
legendNumHeight
>
400
){
legendNumHeight
=
0
if
(
data
.
length
-
1
!==
i
){
totalPage
++
rowList
.
push
(
i
)
}
}
})
legendSvg
.
attr
(
'
width
'
,(
maxWidth
+
10
)
*
totalPage
);
let
listX
=
[]
//各个图例的X
let
listY
=
[]
//各个图例的Y
let
left
=
0
let
top
=
0
legend
.
each
(()
=>
{
top
+=
20
rowList
.
forEach
(
item
=>
{
if
(
item
-
1
===
i
){
left
+=
maxWidth
+
10
top
=
0
}
})
listX
.
push
(
left
)
listY
.
push
(
top
)
})
legend
.
attr
(
'
transform
'
,(
d
,
i
)
=>
{
if
(
i
===
0
){
return
'
translate(0,0)
'
}
else
{
return
`translate(
${
listX
[
i
-
1
]}
,
${
listY
[
i
-
1
]}
)`
}
})
}
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录