2

我有以下问题。我正在使用 plotlys 平行坐标,我需要未标记的线以另一种颜色显示,而不是标准灰色,因为它是默认的。有什么选择吗?

最好的问候![在此处输入图像描述] 1

4

1 回答 1

0

你可以试试这样

import plotly.plotly as py
import plotly.graph_objs as go
data = [
    go.Parcoords(
        marker = dict(
            size = 10,
            color = 'rgba(152, 0, 0, .8)', # default
            line = dict(
                width = 2,
                color = 'rgb(0, 0, 0)'
            )
        )
    )
]
于 2018-04-19T12:31:36.007 回答