make extra_kwargs a series kw.
This commit is contained in:
parent
60043d1252
commit
6744917e69
@ -281,6 +281,7 @@ const _series_defaults = KW(
|
|||||||
# one logical series to be broken up (path and markers, for example)
|
# one logical series to be broken up (path and markers, for example)
|
||||||
:hover => nothing, # text to display when hovering over the data points
|
:hover => nothing, # text to display when hovering over the data points
|
||||||
:stride => (1,1), # array stride for wireframe/surface, the first element is the row stride and the second is the column stride.
|
:stride => (1,1), # array stride for wireframe/surface, the first element is the row stride and the second is the column stride.
|
||||||
|
:extra_kwargs => KW(),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -161,6 +161,7 @@ end
|
|||||||
function pgf_series(sp::Subplot, series::Series)
|
function pgf_series(sp::Subplot, series::Series)
|
||||||
plotattributes = series.plotattributes
|
plotattributes = series.plotattributes
|
||||||
st = plotattributes[:seriestype]
|
st = plotattributes[:seriestype]
|
||||||
|
extra_kwargs = plotattributes[:extra_kwargs]
|
||||||
series_collection = PGFPlots.Plot[]
|
series_collection = PGFPlots.Plot[]
|
||||||
|
|
||||||
# function args
|
# function args
|
||||||
|
|||||||
@ -341,7 +341,7 @@ function _expand_subplot_extrema(sp::Subplot, plotattributes::AKW, st::Symbol)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function _add_the_series(plt, sp, plotattributes)
|
function _add_the_series(plt, sp, plotattributes)
|
||||||
plt.attr[:extra_kwargs] = warnOnUnsupported_args(plt.backend, plotattributes)
|
plotattributes[:extra_kwargs] = warnOnUnsupported_args(plt.backend, plotattributes)
|
||||||
warnOnUnsupported(plt.backend, plotattributes)
|
warnOnUnsupported(plt.backend, plotattributes)
|
||||||
series = Series(plotattributes)
|
series = Series(plotattributes)
|
||||||
push!(plt.series_list, series)
|
push!(plt.series_list, series)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user