Skip to content
New issue

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

Linewidth for geom_line() does not change #58

Closed
AdaemmerP opened this issue Feb 16, 2024 · 4 comments
Closed

Linewidth for geom_line() does not change #58

AdaemmerP opened this issue Feb 16, 2024 · 4 comments

Comments

@AdaemmerP
Copy link

Thanks for the initiative and great package(s)!

I cannot change the linewidth with geom_line():

using Tidier
using DataFrames


# create data
df = DataFrame(
x = 1:1000, 
y = rand(1000)
)

# this plot ...
ggplot(data = df) +
    geom_line(aes(
        x = :x, 
        y = :y, 
        ), 
    linewidth = .05
    )

# ... looks the same as this one    
ggplot(data = df) +
    geom_line(aes(
        x = :x, 
        y = :y, 
        ),  
    linewidth = 5
    )

According to the Manifest.toml I am using TidierPlots.jl Version 0.5.4.

@kdpsingh
Copy link
Member

@rdboyes Any thoughts on this?

I'm guessing linewidth may not be supported yet but wanted to ping for you to take a look when you have a chance.

@rdboyes
Copy link
Member

rdboyes commented Feb 21, 2024

Fixed with 0.5.5 (c3e5ed0)!

@rdboyes rdboyes closed this as completed Feb 21, 2024
@kdpsingh
Copy link
Member

@AdaemmerP make sure to update TidierPlots to be able to see this update (once it hits the registry).

@AdaemmerP
Copy link
Author

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants