Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
VisualDL
提交
0ce28973
V
VisualDL
项目概览
PaddlePaddle
/
VisualDL
大约 1 年 前同步成功
通知
88
Star
4655
Fork
642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
5
Wiki
分析
仓库
DevOps
项目成员
Pages
V
VisualDL
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
5
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
0ce28973
编写于
9月 21, 2020
作者:
P
Peter Pan
提交者:
GitHub
9月 21, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: unnecessary render of histogram chart axis label (#824)
上级
75634f7a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
81 addition
and
72 deletion
+81
-72
frontend/packages/core/package.json
frontend/packages/core/package.json
+1
-0
frontend/packages/core/src/hooks/useECharts.ts
frontend/packages/core/src/hooks/useECharts.ts
+75
-72
frontend/yarn.lock
frontend/yarn.lock
+5
-0
未找到文件。
frontend/packages/core/package.json
浏览文件 @
0ce28973
...
...
@@ -74,6 +74,7 @@
"@babel/preset-env"
:
"7.11.5"
,
"@babel/preset-react"
:
"7.10.4"
,
"@baiducloud/sdk"
:
"1.0.0-rc.22"
,
"@simbathesailor/use-what-changed"
:
"0.1.25"
,
"@snowpack/app-scripts-react"
:
"1.10.0"
,
"@snowpack/plugin-dotenv"
:
"2.0.1"
,
"@snowpack/plugin-optimize"
:
"0.2.1"
,
...
...
frontend/packages/core/src/hooks/useECharts.ts
浏览文件 @
0ce28973
...
...
@@ -146,7 +146,77 @@ export const Wrapper = styled.div`
export
const
useChartTheme
=
(
gl
?:
boolean
)
=>
{
const
theme
=
useTheme
();
const
tt
=
useMemo
(()
=>
themes
[
theme
],
[
theme
]);
if
(
gl
)
{
const
result
=
useMemo
(()
=>
{
if
(
gl
)
{
return
{
title
:
{
textStyle
:
{
color
:
tt
.
textColor
}
},
tooltip
:
{
backgroundColor
:
tt
.
tooltipBackgroundColor
,
borderColor
:
tt
.
tooltipBackgroundColor
,
textStyle
:
{
color
:
tt
.
tooltipTextColor
}
},
xAxis3D
:
{
nameTextStyle
:
{
color
:
tt
.
textLighterColor
},
axisLabel
:
{
color
:
tt
.
textLighterColor
},
axisLine
:
{
lineStyle
:
{
color
:
tt
.
borderColor
}
},
splitLine
:
{
lineStyle
:
{
color
:
tt
.
borderColor
}
}
},
yAxis3D
:
{
nameTextStyle
:
{
color
:
tt
.
textLighterColor
},
axisLabel
:
{
color
:
tt
.
textLighterColor
},
axisLine
:
{
lineStyle
:
{
color
:
tt
.
borderColor
}
},
splitLine
:
{
lineStyle
:
{
color
:
tt
.
borderColor
}
}
},
zAxis3D
:
{
nameTextStyle
:
{
color
:
tt
.
textLighterColor
},
axisLabel
:
{
color
:
tt
.
textLighterColor
},
axisLine
:
{
lineStyle
:
{
color
:
tt
.
borderColor
}
},
splitLine
:
{
lineStyle
:
{
color
:
tt
.
borderColor
}
}
}
};
}
return
{
title
:
{
textStyle
:
{
...
...
@@ -160,7 +230,7 @@ export const useChartTheme = (gl?: boolean) => {
color
:
tt
.
tooltipTextColor
}
},
xAxis
3D
:
{
xAxis
:
{
nameTextStyle
:
{
color
:
tt
.
textLighterColor
},
...
...
@@ -178,25 +248,7 @@ export const useChartTheme = (gl?: boolean) => {
}
}
},
yAxis3D
:
{
nameTextStyle
:
{
color
:
tt
.
textLighterColor
},
axisLabel
:
{
color
:
tt
.
textLighterColor
},
axisLine
:
{
lineStyle
:
{
color
:
tt
.
borderColor
}
},
splitLine
:
{
lineStyle
:
{
color
:
tt
.
borderColor
}
}
},
zAxis3D
:
{
yAxis
:
{
nameTextStyle
:
{
color
:
tt
.
textLighterColor
},
...
...
@@ -215,55 +267,6 @@ export const useChartTheme = (gl?: boolean) => {
}
}
};
}
return
{
title
:
{
textStyle
:
{
color
:
tt
.
textColor
}
},
tooltip
:
{
backgroundColor
:
tt
.
tooltipBackgroundColor
,
borderColor
:
tt
.
tooltipBackgroundColor
,
textStyle
:
{
color
:
tt
.
tooltipTextColor
}
},
xAxis
:
{
nameTextStyle
:
{
color
:
tt
.
textLighterColor
},
axisLabel
:
{
color
:
tt
.
textLighterColor
},
axisLine
:
{
lineStyle
:
{
color
:
tt
.
borderColor
}
},
splitLine
:
{
lineStyle
:
{
color
:
tt
.
borderColor
}
}
},
yAxis
:
{
nameTextStyle
:
{
color
:
tt
.
textLighterColor
},
axisLabel
:
{
color
:
tt
.
textLighterColor
},
axisLine
:
{
lineStyle
:
{
color
:
tt
.
borderColor
}
},
splitLine
:
{
lineStyle
:
{
color
:
tt
.
borderColor
}
}
}
};
},
[
tt
,
gl
]);
return
result
;
};
frontend/yarn.lock
浏览文件 @
0ce28973
...
...
@@ -2549,6 +2549,11 @@
estree-walker "^1.0.1"
picomatch "^2.2.2"
"@simbathesailor/use-what-changed@0.1.25":
version "0.1.25"
resolved "https://registry.yarnpkg.com/@simbathesailor/use-what-changed/-/use-what-changed-0.1.25.tgz#adf9373fb8d71dd8ab41c7cd789d8dd1fd80a058"
integrity sha512-hBzjQYMaSd/IFiFW3XEs4V+Cjklv65XSvtS1nCCsX07J5PjQWXR52AL+fZfJgw52RvgyrVFVRcT611/UffBmhg==
"@sindresorhus/is@^0.14.0":
version "0.14.0"
resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录