8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c11d2c commit 7494655Copy full SHA for 7494655
examples/api/skewt.py
@@ -241,11 +241,11 @@ def upper_xlim(self):
241
242
# Plot the data using normal plotting functions, in this case using
243
# log scaling in Y, as dictated by the typical meteorological plot
244
< 7333 /code>
- ax.semilogy(T, p)
245
- ax.semilogy(Td, p)
+ ax.semilogy(T, p, color='C3')
+ ax.semilogy(Td, p, color='C2')
246
247
# An example of a slanted line at constant X
248
- l = ax.axvline(0)
+ l = ax.axvline(0, color='C0')
249
250
# Disables the log-formatting that comes with semilogy
251
ax.yaxis.set_major_formatter(ScalarFormatter())
0 commit comments