Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Parcoords line opacity, rgba color not working #2699

Open
Assignees
Labels
P3backlog bugsomething broken
Milestone
@noob-procrastinator

Description

The documentation specifies that the parcoords' line argument color can be a an rgba string. This doesn't work though and the lines remain a solid color as if using only the rgb part.

newplot(3)

import plotly.express as px
import plotly.graph_objects as go
iris = px.data.iris()
fig = go.Figure(
 data=go.Parcoords(
 line_color="rgba(100,00,0,0.1)",
 dimensions=list([
 dict(label='sepal_length', values=iris.sepal_length),
 dict(label='sepal_width', values=iris.sepal_width),
 dict(tickvals=[1, 2, 3],
 label='species', values=iris.species_id,
 ticktext=iris.species_id.unique()),
 ]))
)
fig.write_html('parallel.html', auto_open=True)

Metadata

Metadata

Labels

P3backlog bugsomething broken

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions

    AltStyle によって変換されたページ (->オリジナル) /