format files

This commit is contained in:
Simon Christ 2022-04-19 15:36:07 +02:00
parent 41038bfe8e
commit 35247d4228

View File

@ -1278,11 +1278,18 @@ const _examples = PlotExample[
"""
`areaplot` draws stacked area plots.
""",
[:(
[
:(
begin
areaplot(1:3, [1 2 3; 7 8 9; 4 5 6], seriescolor = [:red :green :blue], fillalpha = [0.2 0.3 0.4])
areaplot(
1:3,
[1 2 3; 7 8 9; 4 5 6],
seriescolor = [:red :green :blue],
fillalpha = [0.2 0.3 0.4],
)
end
)],
),
],
),
]