add function stubs from recipeutils

This commit is contained in:
Michael Krabbe Borregaard 2020-03-14 14:56:27 +01:00 committed by Simon Christ
parent e4754f3aeb
commit 5f09d97ca0
2 changed files with 12 additions and 1 deletions

View File

@ -18,7 +18,10 @@ using Base.Meta
import Showoff import Showoff
import StatsBase import StatsBase
import JSON import JSON
import RecipeUtils: _process_userrecipes, _process_plotrecipe, _process_seriesrecipe import RecipeUtils: _process_userrecipes, _process_plotrecipe,
_process_seriesrecipe, _preprocess_args,
preprocessArgs!, is_st_supported,
finalize_subplot!
using Requires using Requires

View File

@ -1,5 +1,13 @@
function finalize_subplot!(plt, plotattributes::AKW)
sp = _prepare_subplot(plt, plotattributes)
_prepare_annotations(sp, plotattributes)
_expand_subplot_extrema(sp, plotattributes, st)
_update_series_attributes!(plotattributes, plt, sp)
_add_the_series(plt, sp, plotattributes)
end
is_st_supported(st::Symbol) = is_seriestype_supported(st)
# ------------------------------------------------------------------ # ------------------------------------------------------------------
# preprocessing # preprocessing