check for bar value visibility never (#37122)

This commit is contained in:
nikki-kiga
2021-07-22 14:09:43 -07:00
committed by GitHub
parent c1963024ec
commit 1de14ea257

View File

@ -192,6 +192,9 @@ export function getConfig(opts: BarsOptions, theme: GrafanaTheme2) {
// uPlot hook to draw the labels on the bar chart.
const draw = (u: uPlot) => {
if (showValue === BarValueVisibility.Never) {
return;
}
// pre-cache formatted labels
let texts = Array(barRects.length);
let labelOffset = LABEL_OFFSET_MAX;