Issue #4740 - able to use $SeriesName variable in prefix of postfix.

This commit is contained in:
Alexander Zobnin 2016-06-21 15:48:18 +03:00
parent 87ab97b5ed
commit cc433c1fbd

View File

@ -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>';
}