Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
T
TrainSys
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
苏州培训方案
TrainSys
提交
3d6ab40c
提交
3d6ab40c
编写于
4月 24, 2023
作者:
zhujiamin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 删除重发
上级
ef7380da
变更
4
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
0 行增加
和
697 行删除
+0
-697
am-pie-threed-echarts.scss
...s/common/am-pie-threed-echarts/am-pie-threed-echarts.scss
+0
-10
am-pie-threed-echarts.tsx
...ts/common/am-pie-threed-echarts/am-pie-threed-echarts.tsx
+0
-114
pie-threed-echarts.scss
...ponents/common/pie-threed-echarts/pie-threed-echarts.scss
+0
-10
pie-threed-echarts.tsx
...mponents/common/pie-threed-echarts/pie-threed-echarts.tsx
+0
-563
未找到文件。
app_Web/src/components/common/am-pie-threed-echarts/am-pie-threed-echarts.scss
已删除
100644 → 0
浏览文件 @
ef7380da
.am-pie-threed-echarts
{
width
:
100%
;
height
:
600px
;
/* stylelint-disable-next-line selector-id-pattern */
#myChart
{
width
:
100%
;
height
:
100%
;
}
}
app_Web/src/components/common/am-pie-threed-echarts/am-pie-threed-echarts.tsx
已删除
100644 → 0
浏览文件 @
ef7380da
import
{
defineComponent
,
ref
,
onMounted
}
from
'vue'
;
import
*
as
am4core
from
'@amcharts/amcharts4/core'
;
import
*
as
am4charts
from
'@amcharts/amcharts4/charts'
;
// eslint-disable-next-line camelcase
import
am4themes_animated
from
'@amcharts/amcharts4/themes/animated'
;
import
'./am-pie-threed-echarts.scss'
;
export
const
AmPie3D
=
defineComponent
({
name
:
'Pie3D'
,
props
:
{
pieData
:
{
type
:
Array
<
IData
>
,
default
:
()
=>
[],
},
},
setup
(
_props
)
{
const
pieChart
=
ref
(
null
);
onMounted
(()
=>
{
// Set theme
am4core
.
useTheme
(
am4themes_animated
);
// Create chart instance
const
chart
=
am4core
.
create
(
'myChart'
,
am4charts
.
PieChart3D
);
// 角度
chart
.
angle
=
50
;
// 厚度
chart
.
depth
=
20
;
// Add data
chart
.
data
=
[
{
category
:
'Lithuania'
,
value
:
501.9
,
sliced
:
true
,
color
:
am4core
.
color
(
'#F44336'
),
},
{
category
:
'Czechia'
,
value
:
301.9
,
sliced
:
true
,
color
:
am4core
.
color
(
'#4CAF50'
),
},
{
category
:
'Ireland'
,
value
:
201.1
,
sliced
:
true
,
color
:
am4core
.
color
(
'#2196F3'
),
},
{
category
:
'Germany'
,
value
:
165.8
,
sliced
:
true
,
color
:
am4core
.
color
(
'#FFC107'
),
},
{
category
:
'Australia'
,
value
:
139.9
,
sliced
:
true
,
color
:
am4core
.
color
(
'#9C27B0'
),
},
{
category
:
'Austria'
,
value
:
128.3
,
sliced
:
true
,
},
{
category
:
'UK'
,
value
:
99
,
sliced
:
true
,
},
{
category
:
'Belgium'
,
value
:
60
,
sliced
:
true
,
},
{
category
:
'The Netherlands'
,
value
:
50
,
sliced
:
true
,
},
];
// Add and configure Series
const
pieSeries
=
chart
.
series
.
push
(
new
am4charts
.
PieSeries3D
());
pieSeries
.
dataFields
.
value
=
'value'
;
pieSeries
.
dataFields
.
category
=
'category'
;
pieSeries
.
slices
.
template
.
stroke
=
am4core
.
color
(
'#fff'
);
pieSeries
.
slices
.
template
.
strokeWidth
=
2
;
pieSeries
.
slices
.
template
.
strokeOpacity
=
1
;
// 设置图例
chart
.
legend
=
new
am4charts
.
Legend
();
chart
.
legend
.
position
=
'right'
;
// 设置 isActive 属性为数据项的 sliced 属性
pieSeries
.
slices
.
template
.
propertyFields
.
isActive
=
'sliced'
;
// 设置颜色字段为 "color"
pieSeries
.
slices
.
template
.
propertyFields
.
fill
=
'color'
;
});
return
{
pieChart
,
};
},
render
()
{
return
(
<
div
class=
'am-pie-threed-echarts'
>
<
div
id=
'myChart'
ref=
'pieChart'
/>
</
div
>
);
},
});
app_Web/src/components/common/pie-threed-echarts/pie-threed-echarts.scss
已删除
100644 → 0
浏览文件 @
ef7380da
.chart-wrapper
{
width
:
100%
;
height
:
600px
;
/* stylelint-disable-next-line selector-id-pattern */
#myChart
{
width
:
100%
;
height
:
100%
;
}
}
app_Web/src/components/common/pie-threed-echarts/pie-threed-echarts.tsx
已删除
100644 → 0
浏览文件 @
ef7380da
此差异已折叠。
点击以展开。
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录