8000 Behaviour of c=None is inconsistent in 2.0 · Issue #7899 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content
Behaviour of c=None is inconsistent in 2.0 #7899
Closed
@Zaharid

Description

@Zaharid

The following code

import numpy as np
import matplotlib.pyplot as plt
f,ax = plt.subplots()
x = np.arange(10)
y = 2*x

plt.errorbar(x,y, c=None)
plt.errorbar(x,2*y, c=None)

Produces two lines with the same color (first one of the cycle). In 1.5 it is two different colors.
It is also two colors if I change errorbar to plot.

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    0