-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Patch to histogram to allow zero fill to be turned off in the configuration #888
Conversation
Looks good, have you completed step one of: https://github.com/elasticsearch/kibana/blob/master/CONTRIBUTING.md? |
Doesn't #612 do the same thing? Also, default isn't described, not sure if it's required. |
@rashidkpc I'm running the agreement by legal, I don't anticipate any issues. |
@bobrik - Honestly, I didn't see #612 before I wrote this patch, which I implemented because I needed to show continuous trend graphs for metrics like CPU, memory and task duration. It looks like we just took different approaches: #612 is ignoring the zerofill option in the histogram panel and creating its own gapfill option, and I was just using the zerofill option as is and exposing it to the editor. Essentially, both patches are expressing the need to be able to select between the four possible fill_style values: all, no, minimal, null (IMHO, these are not very descriptive of the actual style, but that's neither here nor there). I'll leave it up to @rashidkpc and team which way they want to implement that... |
@bobrik - makes sense. I'm not sure which is better overall, and honestly, I don't really care, as long as the functionality gets reflected one way or another - I just need smooth trendlines :-) |
Legal is still reviewing the agreement, should be approved soon. |
+1 👍 for this issue ! |
+1 |
1 similar comment
+1 |
Since this appears to have stalled, I'm going to close it and see about merging #888 |
There's an existing patch to turn off zero-fill in the histogram inside the code, but it is not exposed in the configuration of the histogram panel. This patch adds a configuration option to the editor panel for the histogram to turn that off.