Commit 2f78f46a by Peter Holmberg

fix for add/remove labels

parent b4d5ddd6
...@@ -57,7 +57,8 @@ export class Gauge extends PureComponent<Props> { ...@@ -57,7 +57,8 @@ export class Gauge extends PureComponent<Props> {
const fontColor = config.bootData.user.lightTheme ? 'rgb(38,38,38)' : 'rgb(230,230,230)'; const fontColor = config.bootData.user.lightTheme ? 'rgb(38,38,38)' : 'rgb(230,230,230)';
const fontScale = parseInt('80', 10) / 100; const fontScale = parseInt('80', 10) / 100;
const fontSize = Math.min(dimension / 5, 100) * fontScale; const fontSize = Math.min(dimension / 5, 100) * fontScale;
const gaugeWidth = Math.min(dimension / 6, 60); const gaugeWidthReduceRatio = showThresholdLabels ? 1.5 : 1;
const gaugeWidth = Math.min(dimension / 6, 60) / gaugeWidthReduceRatio;
const thresholdMarkersWidth = gaugeWidth / 5; const thresholdMarkersWidth = gaugeWidth / 5;
const thresholdLabelFontSize = fontSize / 2.5; const thresholdLabelFontSize = fontSize / 2.5;
...@@ -115,7 +116,7 @@ export class Gauge extends PureComponent<Props> { ...@@ -115,7 +116,7 @@ export class Gauge extends PureComponent<Props> {
let value: string | number = 'N/A'; let value: string | number = 'N/A';
if (timeSeries.length) { if (timeSeries.length) {
value = timeSeries[0].stats.avg; value = timeSeries[0].stats[stat];
} }
const plotSeries = { const plotSeries = {
......
...@@ -588,6 +588,7 @@ ...@@ -588,6 +588,7 @@
if (!exists) { if (!exists) {
span = $("<span></span>") span = $("<span></span>")
span.attr("id", id); span.attr("id", id);
span.attr("class", "flot-temp-elem");
placeholder.append(span); placeholder.append(span);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment