Multi line facet labels displaying incorrectly with ggplotly
Dieses Issue hat noch niemand übernommen.
- Vorherrschende Sprache
- R
- Sterne
- 2.7k
- Forks
- 641
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
Multiline is successfully set in the ggplot object with labeller = ggplot2::label_wrap_gen(width = 15, multi_line = TRUE) but then displays incorrectly when passed to ggplotly

df <- dplyr::tibble(fruit = c("Apples", "Pears", "Bananas", "Apples", "Pears", "Bananas"),
metric = c("METRIC 1", "METRIC 1", "METRIC 1", "METRIC 1 - METRIC 2", "METRIC 1 - METRIC 2", "METRIC 1 - METRIC 2"),
value = c(1000, 2000, 3000, 2000, 3000, 3000))
myplot <- ggplot2::ggplot(
data = df,
ggplot2::aes(x = fruit,
y = value,
fill = metric)) +
ggplot2::geom_bar(stat = "identity") +
ggplot2::geom_abline(intercept = 0, slope = 0, lty = 2, color = "grey") +
ggplot2::facet_grid(cols = ggplot2::vars(metric),
scales = "fixed",
labeller = ggplot2::label_wrap_gen(width = 15,
multi_line = TRUE)
) +
ggplot2::coord_flip() +
ggplot2::theme(
text = ggplot2::element_text(size = 14,
color = "#0D0D0D"),
axis.title.x = ggplot2::element_blank(),
axis.title.y = ggplot2::element_blank(),
axis.text = ggplot2::element_text(color = "#0D0D0D"),
axis.ticks = ggplot2::element_blank(),
axis.title = ggplot2::element_text(face = "bold"),
panel.background = ggplot2::element_blank(),
plot.margin = ggplot2::unit(c(0, 0, 0, 0), units = "cm"),
legend.position = "none"
,
strip.text = ggplot2::element_text(lineheight = 2)
)
plotly::ggplotly(myplot)
Beitragsleitfaden
Erste Schritte
- Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
- Forke das Repository und arbeite in einem Branch.
- Öffne einen Pull Request, der die Issue-Nummer nennt.
Rechercherichtung
Beginne damit, das bereitgestellte reproduzierbare R-Beispiel auszuführen und das ggplot-Objekt mit dem Ergebnis von plotly::ggplotly(myplot) zu vergleichen, wobei der Fokus auf den von label_wrap_gen mit multi_line = TRUE erzeugten facet_grid-Beschriftungen liegt. Die Arbeit ist abgeschlossen, wenn mehrzeilige facet_grid-Beschriftungen im konvertierten interaktiven Plot korrekt angezeigt werden, ohne das dargestellte Layout zu beeinträchtigen.
Vom Indexierungsmodell aus dem Issue-Text verfasst.
Bewertung
- Tech-Stack
- r
- Bereich
- data-visualization
- Issue-Typ
- Bug
- Schwierigkeit
- 3/5
- Geschätzter Aufwand
- 1-2 Tage
- Aktivitätsstatus
- Veraltet
- Klarheit
- Größtenteils klar
- Anfängerfreundlichkeit
- 35/100