We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description In VSCode, while using
{ "r.plot.useHttpgd": true, }
in settings.json, instead of false, which doesn't show the problem, the font, or the spacings of it are not respected
false
To Reproduce Make a ggplot and use mono
mono
library(readr) library(dplyr) library(ggplot2) salary_data_file <- "https://raw.githubusercontent.com/datavizpyr/data/master/SO_data_2019/2019_Stack_Overflow_Survey_Education_Salary_US.tsv" salary_data <- read_tsv(salary_data_file) salary_data[salary_data$Education == "Bachelor's",]$Education <- "123 789 345" salary_data[salary_data$Education == "Master's",]$Education <- "12345 789 12345" salary_data %>% ggplot(aes(x=Education, y=CompTotal)) + geom_boxplot()+ coord_flip() + theme( axis.text.y = element_text(family = "mono", size = rel(1)) )
Expected behavior To see correctly the font and spacing as when using false, respect number of spaces
Screenshots with: false
with: true
true
Environment:
The text was updated successfully, but these errors were encountered:
Maybe font issue? #138
Sorry, something went wrong.
@fernandoroa Use figure spaces. See also non-breaking space.
No branches or pull requests
Description
In VSCode, while using
in settings.json, instead of
false
, which doesn't show the problem, the font, or the spacings of it are not respectedTo Reproduce
Make a ggplot and use
mono
Expected behavior
To see correctly the font and spacing as when using
false
, respect number of spacesScreenshots
with:
false
with:
true
Environment:
The text was updated successfully, but these errors were encountered: