Merge pull request #2581 from daschw/pgfplotsx
add legendtitle for pgfplotsx
This commit is contained in:
commit
ef36c6bd0a
@ -1,7 +1,7 @@
|
|||||||
name = "Plots"
|
name = "Plots"
|
||||||
uuid = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
|
uuid = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
|
||||||
author = ["Tom Breloff (@tbreloff)"]
|
author = ["Tom Breloff (@tbreloff)"]
|
||||||
version = "1.0.9"
|
version = "1.0.10"
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
|
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
|
||||||
|
|||||||
@ -240,6 +240,16 @@ function (pgfx_plot::PGFPlotsXPlot)(plt::Plot{PGFPlotsXBackend})
|
|||||||
PGFPlotsX.Axis
|
PGFPlotsX.Axis
|
||||||
end
|
end
|
||||||
axis = axisf(axis_opt)
|
axis = axisf(axis_opt)
|
||||||
|
if sp[:legendtitle] !== nothing
|
||||||
|
push!(axis, PGFPlotsX.Options("\\addlegendimage{empty legend}" => nothing))
|
||||||
|
push!(
|
||||||
|
axis,
|
||||||
|
PGFPlotsX.LegendEntry(
|
||||||
|
string("\\hspace{-.6cm}{\\textbf{", sp[:legendtitle], "}}"),
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
end
|
||||||
for (series_index, series) in enumerate(series_list(sp))
|
for (series_index, series) in enumerate(series_list(sp))
|
||||||
# give each series a uuid for fillbetween
|
# give each series a uuid for fillbetween
|
||||||
series_id = uuid4()
|
series_id = uuid4()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user