-
Beta Was this translation helpful? Give feedback.
Answered by
KelSolaar
Nov 14, 2020
Replies: 2 comments
-
Hi @hminle, So the quick way to turn the legend off is to do that: colour.plotting.plot_RGB_colourspaces_in_chromaticity_diagram_CIE1931(['sRGB', 'ProPhoto RGB'], legend=False) Alternatively, and probably better in your case: figure, axes = colour.plotting.plot_RGB_colourspaces_in_chromaticity_diagram_CIE1931(['sRGB', 'ProPhoto RGB'], standalone=False)
axes.legend().texts = ['sRGB (Adapted)', 'ProPhoto RGB']
colour.plotting.render() # or plt.show() Cheers, Thomas |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
KelSolaar
-
Thank you a lot @KelSolaar |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @hminle,
So the quick way to turn the legend off is to do that:
Alternatively, and probably better in your case:
Cheers,
Thomas