Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
essenciary committed Feb 18, 2022
2 parents 7738bb5 + dfe5ad2 commit 5ab60d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Charts.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ Base.@kwdef mutable struct PlotData
w::Union{Vector,Nothing} = nothing
whiskerwidth::Union{Float64,Nothing} = nothing
width::Union{Int,Vector{Int},Nothing} = nothing
x::Union{Vector,Nothing} = nothing
x::Union{Vector,Matrix,Nothing} = nothing
x0::Union{Int,String,Nothing} = nothing
xaxis::Union{String,Nothing} = nothing
xbingroup::Union{String,Nothing} = nothing
Expand All @@ -1066,7 +1066,7 @@ Base.@kwdef mutable struct PlotData
xperiodalignment::Union{String,Nothing} = nothing
xperiod0::Union{Float64,Int,String,Nothing} = nothing
xtype::Union{String,Nothing} = nothing
y::Union{Vector,Nothing} = nothing
y::Union{Vector,Matrix,Nothing} = nothing
y0::Union{Int,String,Nothing} = nothing
yaxis::Union{String,Nothing} = nothing
ybingroup::Union{String,Nothing} = nothing
Expand All @@ -1077,7 +1077,7 @@ Base.@kwdef mutable struct PlotData
yperiodalignment::Union{String,Nothing} = nothing
yperiod0::Union{Float64,Int,String,Nothing} = nothing
ytype::Union{String,Nothing} = nothing
z::Union{Matrix,Nothing} = nothing
z::Union{Vector,Matrix,Nothing} = nothing
zauto::Union{Bool,Nothing} = nothing
zcalendar::Union{String,Nothing} = nothing
zhoverformat::Union{String,Nothing} = nothing
Expand Down

2 comments on commit 5ab60d8

@essenciary
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/55399

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.10.1 -m "<description of version>" 5ab60d8ed372e2c30d55fe9277b945d73c0d21a7
git push origin v0.10.1

Please sign in to comment.