How to customise the grid with the plotting definitions? #1263
Unanswered
LaughingMaann
asked this question in
Q&A
Replies: 1 comment
-
Hello @LaughingMaann, Try something like that: import colour
figure, axes = colour.plotting.plot_chromaticity_diagram_CIE1931(show=False)
axes.grid(color="red", linestyle="--", linewidth=0.5)
colour.plotting.render() Cheers, Thomas |
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
-
Question
want to plot major grid lines similar to the left (example matplotlib), onto the plot_planckian_locus_in_chromaticity_diagram_CIE1931 (desired to the right). specifically, i wanted the grid lines dashed, to show for every chromaticity step size of 0.1, both in the x-axis and y-axis.
boxed in the right, i've tried to do just about everything but cannot get the grid lines to show like the left screeenshot example plot. please halp me senpai
Beta Was this translation helpful? Give feedback.
All reactions