fossasia/visdom

Is there a way to change marker edge width and color?

已关闭

#623 创建于 2019年5月10日

 (5 条评论) (0 个反应) (0 位负责人)Python (1,152 个派生)batch import
Fix Proposedenhancementhelp wanted

仓库指标

星标
 (9,831 个星标)
PR 合并指标
 (平均合并 9天 12小时) (30 天内合并 116 个 PR)

描述

Is your feature request related to a problem? Please describe. When I use 3d Scatter chart, I need to customize the opts.markercolor which indicate the weights for different points. For instance, the darker of the points, the higher of the weight. However, the border of the points, which always assigned a darker color makes the visual evaluation harder.

So I'm wondering if there is any api or feature in the future provide the ability to change the marker edge width and color like what Plot.ly did.

Describe the solution you'd like Add more configurations in opts. like :

        self.vis.scatter(
            X=X,
            Y=Y,
            env=env,
            win=legend,
            opts=dict(
                markersize=2,
                markercolor=color_map,
                *markeredgewidth=0*
                name=legend,
                title=legend
            )
        )

image

贡献者指南