-
Notifications
You must be signed in to change notification settings - Fork 133
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
Feature histogram #1959
Feature histogram #1959
Conversation
…ing the code to contain choice of dataTypes for a feature list.
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.
Some small comments, looks good though
...a/io/github/mzmine/modules/visualization/feat_histogram/FeatureHistogramDatasetProvider.java
Outdated
Show resolved
Hide resolved
...va/io/github/mzmine/modules/visualization/feat_histogram/FeatureHistogramPlotController.java
Outdated
Show resolved
Hide resolved
...va/io/github/mzmine/modules/visualization/feat_histogram/FeatureHistogramPlotController.java
Outdated
Show resolved
Hide resolved
public Region build() { | ||
final HistogramPanel histo = new HistogramPanel(); | ||
final BorderPane mainPane = new BorderPane(histo); | ||
mainPane.setTop(createDataTypeBox()); |
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.
usually we put the controls below the plot, e.g. spectra plot, overview, stats...
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.
Issue is that at the bottom we have a lot of controls already for the histogram itself. So I thought here its better to have the data selection on the top. Maybe we could rethink this when making the HistogramChart itself MVC.
I think I kind of like the data selection, preprocessing parameters on the top and the other controls on the bottom or on the right, but this may depend case to case.
Here is another example of data selection and parameters on the top:
...a/io/github/mzmine/modules/visualization/feat_histogram/FeatureHistogramDatasetProvider.java
Outdated
Show resolved
Hide resolved
@SteffenHeu ready from my side |
finalization of #1896