mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Full metric description (#7493)
graph: add full metric description for graph-legend-alias title
This commit is contained in:
committed by
Carl Bergquist
parent
38c29d2209
commit
6eda5604d2
@@ -167,7 +167,7 @@ function (angular, _, $) {
|
||||
html += '<i class="fa fa-minus pointer" style="color:' + series.color + '"></i>';
|
||||
html += '</div>';
|
||||
|
||||
html += '<a class="graph-legend-alias pointer">' + _.escape(series.label) + '</a>';
|
||||
html += '<a class="graph-legend-alias pointer" title="' + _.escape(series.label) + '">' + _.escape(series.label) + '</a>';
|
||||
|
||||
if (panel.legend.values) {
|
||||
var avg = series.formatValue(series.stats.avg);
|
||||
|
||||
Reference in New Issue
Block a user