-
Notifications
You must be signed in to change notification settings - Fork 0
Radar plot #1
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
base: master
Are you sure you want to change the base?
Radar plot #1
Conversation
0feee77 to
5edcf37
Compare
|
Threshold spinbox maximum value must be a lot greater than 99. If the threshold checkbox is not checked, we should hide the threshold widgets (line type and value), no? Threshold checkbox need a first upper letter. |
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.
DataPlotly/core/plot_types/radar.py
Outdated
| if settings.properties['threshold'] is True : | ||
| colors_list.append('#000000') | ||
| settings.y.append([settings.properties['threshold_value']] * len(settings.y_radar_values[0])) | ||
| settings.y_radar_labels.append('threshold') |
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.
We might want to translate this label
| self.marker_types = OrderedDict([ | ||
| (self.tr('Points'), 'markers'), | ||
| (self.tr('Lines'), 'lines'), | ||
| (self.tr('Points'), 'markers'), | ||
| (self.tr('Points and Lines'), 'lines+markers') |
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.
Why this change of order?
| self.line_combo.clear() | ||
| for k, v in self.line_types.items(): | ||
| self.line_type_threshold.clear() | ||
| for k, v in self.line_types2.items(): |
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.
Why changing from line_types to line_types2?
Co-authored-by: Jacky Volpes <34267385+Djedouas@users.noreply.github.com>
line type and combo box are now decorrelated
Refresh the UI according to Points, Line, Points and Lines marker type not only when marker type changes, but also when the plot type changes (to be correctly initialized).

No description provided.