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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
line_labels
PolyCollections
I'm keen on making a PR to adapt line_labels to make it work with fill_between objects (PolyCollection)
fill_between
(PolyCollection)
This would be the usage and output:
import matplotlib.pyplot as plt import matplotx import numpy as np x = np.linspace(0, 1) y1 = np.linspace(1, 2) y2 = np.linspace(2, 4) plt.fill_between(x, y1, label="label1") plt.fill_between(x, y1, y2, label="label1") matplotx.label_fillbetween() plt.show()
@nschloe would you be interested in this feature?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm keen on making a PR to adapt
line_labels
to make it work withfill_between
objects(PolyCollection)
This would be the usage and output:
@nschloe would you be interested in this feature?
The text was updated successfully, but these errors were encountered: