-
Notifications
You must be signed in to change notification settings - Fork 1.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
[Bar Graph Plugin] Accepts types that it should not #4400
Comments
Bar charts are probably accepting objects that produce telemetry, which condition sets do, but without considering whether the telemetry is actually plottable in a bar chart (ie. does it produce numbers?). |
I can take this one |
We are checking range values:
but this isn't enough clearly. Should I be checking for a |
Good question. I think we want to use similar logic to regular plots? Of course I'm assuming they are working correctly in this scenario :) |
Though after talking about this at the tagup, should we trying to plot ConditionSets in BarGraphs, or forbidding them? One can plot them in Overlay plots: |
As I'm not sure there's a good way to look for numbers per se, and if we don't want to modify BarCharts to support enums, we could just block telemetry of the |
Per discussion in tagup, I'm going to check if the metadata is an enum, and block objects in the composition policy that have it. |
Fixed in: |
Testathon 12/7/2021 - Verified Fixed |
Summary
I had accidentally created a condition set inside of a bar graph. Tried creating some other types, but looks like only condition set is the issue.
Expected vs Current Behavior
Impact Check List
Steps to Reproduce
The text was updated successfully, but these errors were encountered: