From c0b204f93b4806e0e3d82f3790d5f64128b5259b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Sat, 16 Feb 2019 16:06:16 +0100 Subject: [PATCH] Added missing Gauge props --- public/app/plugins/panel/gauge/GaugePanel.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/app/plugins/panel/gauge/GaugePanel.tsx b/public/app/plugins/panel/gauge/GaugePanel.tsx index eb5aad82ee1..e7e60a7c417 100644 --- a/public/app/plugins/panel/gauge/GaugePanel.tsx +++ b/public/app/plugins/panel/gauge/GaugePanel.tsx @@ -50,6 +50,10 @@ export class GaugePanel extends PureComponent { decimals={valueOptions.decimals} thresholds={options.thresholds} valueMappings={options.valueMappings} + showThresholdLabels={options.showThresholdLabels} + showThresholdMarkers={options.showThresholdMarkers} + minValue={options.minValue} + maxValue={options.maxValue} theme={theme} /> )}