From 52c081758da8fa3c1454eb3e6c2d0c741044e67e Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Sun, 15 Mar 2020 21:14:16 +0100 Subject: [PATCH] move Formatted and import --- src/Plots.jl | 2 +- src/components.jl | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/src/Plots.jl b/src/Plots.jl index 92546af7..c9bb7af3 100644 --- a/src/Plots.jl +++ b/src/Plots.jl @@ -24,7 +24,7 @@ import RecipePipeline: _process_userrecipe, _process_plotrecipe, finalize_subplot!, recipe_pipeline!, _recipe_init!, _recipe_after_user!, _recipe_after_plot!, _recipe_before_series!, - _recipe_finish!, is_st_supported + _recipe_finish!, is_st_supported, Formatted, SliceIt, FuncOrFuncs, MaybeNumber, MaybeString, DataPoint using Requires diff --git a/src/components.jl b/src/components.jl index c87fa50f..02abd8b8 100644 --- a/src/components.jl +++ b/src/components.jl @@ -771,13 +771,6 @@ function add_arrows(func::Function, x::AVec, y::AVec) end end -# ----------------------------------------------------------------------- - -"Represents data values with formatting that should apply to the tick labels." -struct Formatted{T} - data::T - formatter::Function -end # ----------------------------------------------------------------------- "create a BezierCurve for plotting"