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
5420a816
Commit
5420a816
authored
Jan 18, 2019
by
Dominik Prokop
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Render series color picker with correct theme
parent
4b9e9336
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
public/app/plugins/panel/graph/Legend/LegendSeriesItem.tsx
+13
-2
No files found.
public/app/plugins/panel/graph/Legend/LegendSeriesItem.tsx
View file @
5420a816
...
@@ -2,6 +2,8 @@ import React, { PureComponent } from 'react';
...
@@ -2,6 +2,8 @@ import React, { PureComponent } from 'react';
import
classNames
from
'classnames'
;
import
classNames
from
'classnames'
;
import
{
TimeSeries
}
from
'app/core/core'
;
import
{
TimeSeries
}
from
'app/core/core'
;
import
{
SeriesColorPicker
}
from
'@grafana/ui'
;
import
{
SeriesColorPicker
}
from
'@grafana/ui'
;
import
{
ThemeProvider
}
from
'app/core/utils/ConfigProvider'
;
import
{
GrafanaTheme
}
from
'@grafana/ui/'
;
export
const
LEGEND_STATS
=
[
'min'
,
'max'
,
'avg'
,
'current'
,
'total'
];
export
const
LEGEND_STATS
=
[
'min'
,
'max'
,
'avg'
,
'current'
,
'total'
];
...
@@ -154,8 +156,8 @@ interface LegendSeriesIconState {
...
@@ -154,8 +156,8 @@ interface LegendSeriesIconState {
color
:
string
;
color
:
string
;
}
}
function
SeriesIcon
(
props
)
{
function
SeriesIcon
(
{
color
}
)
{
return
<
i
className=
"fa fa-minus pointer"
style=
{
{
color
:
props
.
color
}
}
/>;
return
<
i
className=
"fa fa-minus pointer"
style=
{
{
color
}
}
/>;
}
}
class
LegendSeriesIcon
extends
PureComponent
<
LegendSeriesIconProps
,
LegendSeriesIconState
>
{
class
LegendSeriesIcon
extends
PureComponent
<
LegendSeriesIconProps
,
LegendSeriesIconState
>
{
...
@@ -167,16 +169,25 @@ class LegendSeriesIcon extends PureComponent<LegendSeriesIconProps, LegendSeries
...
@@ -167,16 +169,25 @@ class LegendSeriesIcon extends PureComponent<LegendSeriesIconProps, LegendSeries
render
()
{
render
()
{
return
(
return
(
<
ThemeProvider
>
{
theme
=>
{
return
(
<
SeriesColorPicker
<
SeriesColorPicker
optionalClass=
"graph-legend-icon"
optionalClass=
"graph-legend-icon"
yaxis=
{
this
.
props
.
yaxis
}
yaxis=
{
this
.
props
.
yaxis
}
color=
{
this
.
props
.
color
}
color=
{
this
.
props
.
color
}
onColorChange=
{
this
.
props
.
onColorChange
}
onColorChange=
{
this
.
props
.
onColorChange
}
onToggleAxis=
{
this
.
props
.
onToggleAxis
}
onToggleAxis=
{
this
.
props
.
onToggleAxis
}
theme=
{
theme
as
GrafanaTheme
}
>
>
<
span
>
<
SeriesIcon
color=
{
this
.
props
.
color
}
/>
<
SeriesIcon
color=
{
this
.
props
.
color
}
/>
</
span
>
</
SeriesColorPicker
>
</
SeriesColorPicker
>
);
);
}
}
</
ThemeProvider
>
);
}
}
}
}
...
...
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