add function stubs from recipeutils

This commit is contained in:
Michael Krabbe Borregaard 2020-03-14 14:56:27 +01:00
parent 8d90546056
commit dee4a7421d
2 changed files with 12 additions and 1 deletions

View File

@ -18,7 +18,10 @@ using Base.Meta
import Showoff
import StatsBase
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

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