mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 07:35:45 -06:00
Issue #4740 - able to use $SeriesName variable in prefix of postfix.
This commit is contained in:
parent
87ab97b5ed
commit
cc433c1fbd
@ -199,6 +199,13 @@ class SingleStatCtrl extends MetricsPanelCtrl {
|
||||
data.valueFormated = formatFunc(data.value, decimalInfo.decimals, decimalInfo.scaledDecimals);
|
||||
data.valueRounded = kbn.roundValue(data.value, decimalInfo.decimals);
|
||||
}
|
||||
|
||||
// Add $SeriesName variable for using in prefix or postfix
|
||||
data.scopedVars = {
|
||||
SeriesName: {
|
||||
value: this.series[0].label
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
// check value to text mappings if its enabled
|
||||
@ -296,7 +303,7 @@ class SingleStatCtrl extends MetricsPanelCtrl {
|
||||
}
|
||||
|
||||
function getSpan(className, fontSize, value) {
|
||||
value = templateSrv.replace(value);
|
||||
value = templateSrv.replace(value, data.scopedVars);
|
||||
return '<span class="' + className + '" style="font-size:' + fontSize + '">' +
|
||||
value + '</span>';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user