[Bug]: LineCollection, set_linestyle does not work · Issue #28545 · matplotlib/matplotlib · GitHub
Skip to content

[Bug]: LineCollection, set_linestyle does not work #28545

Description

@jonpro142

Bug summary

in the class LineCollection, the argument linestyle has no effect neither if set directly or if set afterwards with set_linestyle or with set(linestyle='--')
set_color does work. maybe its just linestyle that doesnt.

Code for reproduction

coord_start = np.column_stack((x_midpts[:-1], y_midpts[:-1]))[:, np.newaxis, :]
coord_mid = np.column_stack((x, y))[:, np.newaxis, :]
coord_end = np.column_stack((x_midpts[1:], y_midpts[1:]))[:, np.newaxis, :]
segments = np.concatenate((coord_start, coord_mid, coord_end), axis=1)

lc = LineCollection(segments, **default_kwargs)
#lc.set_array(values)  # set the colors of each segment
#lc.set_linestyle(':')
#lc.set_color(c)
lc.set(color=c, linestyle='--')

Actual outcome

linestyle doesnt change

Expected outcome

linestyle should change to the type i gave as input

Additional information

No response

Operating system

No response

Matplotlib Version

3.5.3 and 3.9.1

Matplotlib Backend

No response

Python version

No response

Jupyter version

No response

Installation

None

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions