-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
La valeur du gauge ne dois pas etre le pourcentage #3
Comments
Je suis en train de préparer un fix pour ceci, car j'ai le même problème. Je vais faire un pull request dès que c'est prêt. |
Il faudra aussi modifier ces functions: |
D'accord pour le label, mais je crois que le tooltip devrais afficher la valeur et non le pourcentage. |
Au fait pour ces deux le choix est a toi comment tu veux les afficher. Je voulais just attirer ton attention sur leur effet. |
En fait, je ne suis pas le propriétaire du repo, juste quelqu'un d'autre qui a le même problème. |
Hi Gauge-sg conributor, I downloaded and installed gauge-sg plugin to Kibana5. When I created gauge chart, I changed the number of gauge level, however the chart doesn't show any change. For example, the default gauge level 1 is 30, and gauge level 2 is 60. I changed gauge level 1 to 5, and gauge level 2 to 7. The count number I have is 8, so it should be in gauge level 2. However it still stays in gauge level 1 area. Shouldn't the gauge level affect the chart? |
I have the same issue than @msgzzhang but also Input thresholds as percentages doesn't work for me [ Kibana 5.1.1] |
The code has a bug. It only works if the minimum is set to 0 and the
maximum to 100. You can see the resolution in the comments about the issue
I posted.
I reported this so that the author can resolve it.
The problem is in the gauge_sg_controller.js file.
Thanks,
…On Tue, Feb 28, 2017 at 5:36 AM billmetangmo ***@***.***> wrote:
I have the same issue than @msgzzhang <https://github.com/msgzzhang> but
no properties worked for me [ Kibana 5.1.1]
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#3 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AXdB0J-voTd6q_Oce3kYyKTrGLbSNqmDks5rg_iigaJpZM4LWdIO>
.
|
Cette ligne n'est pas correct. Si maxGauge est superieur a 100 le gauge ne va pas s'afficher correctement.
metrics[0] = {label: table.columns[nbr_c - 1].title, value: (((sum / nbr_r) * 100) / $scope.vis.params.maxGauge)};
value dois etre: sum
metrics[0] = {label: table.columns[nbr_c - 1].title, value: sum)};
The text was updated successfully, but these errors were encountered: