-
Notifications
You must be signed in to change notification settings - Fork 34
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
Arrayplot widget #1868
Arrayplot widget #1868
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1868 +/- ##
==========================================
- Coverage 79.40% 79.40% -0.01%
==========================================
Files 523 523
Lines 40899 40899
==========================================
- Hits 32477 32476 -1
- Misses 8422 8423 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
ARRAYPLOT | ||
SETTING TITLE "Array Data" | ||
SETTING ITEM INST HEALTH_STATUS ARY | ||
SETTING ITEM INST HEALTH_STATUS ARY2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can add multiple data items to the graph just like LINEGRAPH
SETTING ITEM INST HEALTH_STATUS ARY | ||
SETTING ITEM INST HEALTH_STATUS ARY2 | ||
SETTING SIZE 600 400 | ||
SETTING X_AXIS 10 10 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If X_AXIS is not set it will just start from 0 and increment by 1. Otherwise you can give a starting number and increment by and it will fill according to the first ITEM length
Implementation to support Keysight Spectrum Analyzers (https://www.keysight.com/us/en/products/spectrum-analyzers-signal-analyzers/x-series-signal-analyzers.html) which have a SCPI interface to pull a full “trace” from the instrument that is a comma separated list of Y-values for the current displayed signal. That's why I left the X-Axis as incrementing by 1 (default) or manually set with Start and Step (could also have specified Start and End and determined step by the number of points). |
|
closes #355