Skip to content

Commit

Permalink
Merge pull request #1695 from JuliaPlots/pv/group
Browse files Browse the repository at this point in the history
RFC WIP: sort x axis in group_as_matrix
  • Loading branch information
mkborregaard authored Aug 26, 2018
2 parents 3eabaf0 + 937acbc commit 602dbdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/series.jl
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ group_as_matrix(t) = false
x = g.args[1]
last_args = g.args[2:end]
end
x_u = unique(x)
x_u = unique(sort(x))
x_ind = Dict(zip(x_u, 1:length(x_u)))
for (key,val) in plotattributes
if splittable_kw(key, val, lengthGroup)
Expand Down

0 comments on commit 602dbdf

Please sign in to comment.