We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With Matlab 2024b when quartilestyle is selected as "shadow" it was causing an error, due to "Marker" option in the fill code. Instead.
obj.ViolinPlotQ = ... % plot color will be overwritten later fill(w(indices), h(indices), [1 1 1],'FaceColor', 'none','LineStyle','-');
The text was updated successfully, but these errors were encountered:
Could you create a pull request with a visual example of what goes wrong and how it's fixed?
Sorry, something went wrong.
No branches or pull requests
With Matlab 2024b when quartilestyle is selected as "shadow" it was causing an error, due to "Marker" option in the fill code.
Instead.
If you subsitute the fill code as follows the error would be fixed.
obj.ViolinPlotQ = ... % plot color will be overwritten later
fill(w(indices), h(indices), [1 1 1],'FaceColor', 'none','LineStyle','-');
The text was updated successfully, but these errors were encountered: