Alignment of ggtitle
Nobody has claimed this yet.
- Dominant language
- R
- Stars
- 2.7k
- Forks
- 641
- PR merge metrics
- No merged PRs in 30d
Description
First off, thank you for an incredible set of packages!
I'm facing an issue where the ggplot2 title aesthetics are not translated through ggplotyl(); more precisely, the horizontal title adjustment theme(plot.title = element_text(hjust = 0)) is ignored.
Code below:
library(ggthemes)
library(plotly)
set.seed(12345)
v <- runif(100, min=0, max=100)
df <- as.data.frame(v)
names(df) <- c("pressure")
t <- ggplot(df, aes(x = pressure)) +
geom_histogram(bins = 20, alpha = 0.7, position = "identity") +
scale_fill_fivethirtyeight(label = comma) +
theme_tufte(base_size = 7, base_family = "Avenir") +
labs(x = "pressure", "# observations", title = "pressure plot") +
theme(plot.title = element_text(hjust = 0)) +
theme(axis.ticks = element_blank()) +
scale_x_continuous()
(gg <- ggplotly(t))
Is there another way to define the location of text elements? Thanks!
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 by running the supplied R example and inspect the resulting ggplotly title alignment against the ggplot2 theme setting. Trace how the title's horizontal adjustment is translated, then verify that the rendered title respects hjust = 0 without breaking other title positioning.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- r
- Domain
- data-visualization
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 38/100