Option to remove the white shadow in sankey type diagram
Open
Nobody has claimed this yet.
plotly.js
- Dominant language
- R
- Stars
- 2.7k
- Forks
- 641
- PR merge metrics
- No merged PRs in 30d
Description
Brief description of the problem
Hi I need to have a cleaner version of sankey diagram but couldn't find the option in API doc.
The dom class name is text-shadow, but in the doc
There's no definition to include/exclude text shadow.

plot_ly(
type = "sankey",
domain = c(
x = c(0,1),
y = c(0,1)
),
orientation = "h",
node = node,
link = link,
width = 2000,
height = 3600) %>%
layout(
title = "TBD",
font = list(
size = 10,
color = 'white'
),
plot_bgcolor = 'black',
paper_bgcolor = 'black'
)
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the sankey chart entry point and the text-shadow DOM class described in the issue, then compare the R API documentation for layout and style options. Done means users can explicitly include or exclude the white shadow in a sankey diagram and the option is documented.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- r
- Domain
- data-visualization
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100