Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
7f0e22e2
Commit
7f0e22e2
authored
Mar 06, 2019
by
corpglory-dev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Run prettier
parent
568bc1c7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
packages/grafana-ui/src/components/Piechart/Piechart.tsx
+7
-6
No files found.
packages/grafana-ui/src/components/Piechart/Piechart.tsx
View file @
7f0e22e2
...
...
@@ -56,7 +56,8 @@ export class Piechart extends PureComponent<Props> {
const
innerRadius
=
pieType
===
PiechartType
.
PIE
?
0
:
radius
;
d3
.
select
(
'.piechart-container svg'
).
remove
();
const
svg
=
d3
.
select
(
'.piechart-container'
)
const
svg
=
d3
.
select
(
'.piechart-container'
)
.
append
(
'svg'
)
.
attr
(
'width'
,
width
)
.
attr
(
'height'
,
height
)
...
...
@@ -72,7 +73,8 @@ export class Piechart extends PureComponent<Props> {
const
pie
=
d3
.
pie
();
svg
.
selectAll
(
'path'
)
svg
.
selectAll
(
'path'
)
.
data
(
pie
(
data
))
.
enter
()
.
append
(
'path'
)
...
...
@@ -91,18 +93,17 @@ export class Piechart extends PureComponent<Props> {
const
{
height
,
width
}
=
this
.
props
;
return
(
<
div
className=
'piechart-panel'
>
<
div
className=
"piechart-panel"
>
<
div
ref=
{
element
=>
(
this
.
containerElement
=
element
)
}
className=
'piechart-container'
className=
"piechart-container"
style=
{
{
height
:
`${height * 0.9}px`
,
width
:
`${Math.min(width, height * 1.3)}px`
,
top
:
'10px'
,
margin
:
'auto'
,
}
}
>
</
div
>
/>
</
div
>
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment