From d6972abd48b4012d38a7b0cc7133aee25ea90112 Mon Sep 17 00:00:00 2001 From: Jukka Kurkela Date: Sat, 27 Mar 2021 22:43:56 +0200 Subject: [PATCH] Add note about inline plugins and registration (#8741) --- docs/docs/developers/plugins.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/docs/developers/plugins.md b/docs/docs/developers/plugins.md index e3b280e4d..58c1cdac1 100644 --- a/docs/docs/developers/plugins.md +++ b/docs/docs/developers/plugins.md @@ -27,6 +27,8 @@ var chart3 = new Chart(ctx, {}); Plugins can also be defined directly in the chart `plugins` config (a.k.a. *inline plugins*): +> Note: *inline* plugins are not registered. Some plugins require registering, i.e. can't be used *inline*. + ```javascript var chart = new Chart(ctx, { plugins: [{ -- 2.47.3