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
781fed10
Commit
781fed10
authored
Apr 09, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(mixed data source): fixed issue with mixed data sources in same graph, fixes #4604
parent
ebb373ee
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
CHANGELOG.md
+1
-0
public/app/features/panel/metrics_panel_ctrl.ts
+6
-2
No files found.
CHANGELOG.md
View file @
781fed10
...
@@ -12,6 +12,7 @@
...
@@ -12,6 +12,7 @@
*
**Graph Panel**
: Fixed issue with axis labels overlapping Y-axis, fixes
[
#4626
](
https://github.com/grafana/grafana/issues/4626
)
*
**Graph Panel**
: Fixed issue with axis labels overlapping Y-axis, fixes
[
#4626
](
https://github.com/grafana/grafana/issues/4626
)
*
**InfluxDB**
: Fixed issue with templating query containing template variable, fixes
[
#4602
](
https://github.com/grafana/grafana/issues/4602
)
*
**InfluxDB**
: Fixed issue with templating query containing template variable, fixes
[
#4602
](
https://github.com/grafana/grafana/issues/4602
)
*
**Graph Panel**
: Fixed issue with hiding series and stacking, fixes
[
#4557
](
https://github.com/grafana/grafana/issues/4557
)
*
**Graph Panel**
: Fixed issue with hiding series and stacking, fixes
[
#4557
](
https://github.com/grafana/grafana/issues/4557
)
*
**Mixed Datasources**
: Fixed issue with mixing many datasources in same graph, fixes
[
#4604
](
https://github.com/grafana/grafana/issues/4604
)
# 3.0.0-beta2 (2016-04-04)
# 3.0.0-beta2 (2016-04-04)
...
...
public/app/features/panel/metrics_panel_ctrl.ts
View file @
781fed10
...
@@ -252,8 +252,12 @@ class MetricsPanelCtrl extends PanelCtrl {
...
@@ -252,8 +252,12 @@ class MetricsPanelCtrl extends PanelCtrl {
}
}
addDataQuery
(
datasource
)
{
addDataQuery
(
datasource
)
{
var
target
=
{
var
target
:
any
=
{};
};
if
(
datasource
)
{
target
.
datasource
=
datasource
.
name
;
}
this
.
panel
.
targets
.
push
(
target
);
this
.
panel
.
targets
.
push
(
target
);
}
}
}
}
...
...
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