فهرست منبع

Bar gauge auto lcd cell count

Torkel Ödegaard 6 سال پیش
والد
کامیت
714e03c162
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      packages/grafana-ui/src/components/BarGauge/BarGauge.tsx

+ 1 - 1
packages/grafana-ui/src/components/BarGauge/BarGauge.tsx

@@ -193,7 +193,7 @@ export class BarGauge extends PureComponent<Props> {
     const valueRange = maxValue - minValue;
     const valueRange = maxValue - minValue;
     const maxSize = this.size * BAR_SIZE_RATIO;
     const maxSize = this.size * BAR_SIZE_RATIO;
     const cellSpacing = 5;
     const cellSpacing = 5;
-    const cellCount = 25;
+    const cellCount = maxSize / 20;
     const cellSize = (maxSize - cellSpacing * cellCount) / cellCount;
     const cellSize = (maxSize - cellSpacing * cellCount) / cellCount;
     const colors = this.getValueColors();
     const colors = this.getValueColors();
     const valueStyles = this.getValueStyles(valueFormatted, colors.value, this.size - maxSize);
     const valueStyles = this.getValueStyles(valueFormatted, colors.value, this.size - maxSize);