Explorar el Código

HDDS-172. The numbers of operation should be integer in KSM UI.
Contributed by Takanobu Asanuma.

Anu Engineer hace 7 años
padre
commit
308a1591f9
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      hadoop-ozone/ozone-manager/src/main/webapps/ksm/ksm.js

+ 3 - 1
hadoop-ozone/ozone-manager/src/main/webapps/ksm/ksm.js

@@ -48,7 +48,9 @@
                     labelType: 'value',
                     duration: 500,
                     labelThreshold: 0.01,
-                    labelSunbeamLayout: true,
+                    valueFormat: function(d) {
+                        return d3.format('d')(d);
+                    },
                     legend: {
                         margin: {
                             top: 5,