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
Hi,
I am relatively new to the package so feel free to close if this functionality exists (if so, maybe incorporating into the docs would be helpful).
We should be able to pass kwargs to the matplotlib function that is being used by mikeio when using the plot methods.
For example, if I want to change the colors/line widths etc of a mesh in a dfsu, it might look like.
fig, axes = plt.subplots() mds.geometry.plot.mesh() collection = axes.get_children()[0] collection.set(**kwargs)
but this could be:
mds.geometry.plot.mesh(**kwargs)
The text was updated successfully, but these errors were encountered:
Hi @chrisawhitwell, would you like to submit a PR with your suggestion?
The place to start tweaking is
mikeio/mikeio/spatial/_FM_geometry.py
Line 126 in d905579
Please also add a test that showcases the functionality.
Sorry, something went wrong.
Hey @ecomodeller, Sure thing I will get to it when I find some time!
No branches or pull requests
Hi,
I am relatively new to the package so feel free to close if this functionality exists (if so, maybe incorporating into the docs would be helpful).
We should be able to pass kwargs to the matplotlib function that is being used by mikeio when using the plot methods.
For example, if I want to change the colors/line widths etc of a mesh in a dfsu, it might look like.
but this could be:
The text was updated successfully, but these errors were encountered: