From cf65384e5095fa355525d9bc0eaccce0325be029 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Rivi=C3=A8re?= Date: Wed, 2 Oct 2024 17:28:01 +0200 Subject: [PATCH] simpler for now --- docs/features/lifecycle.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/features/lifecycle.md b/docs/features/lifecycle.md index 3f44aa2eed..5c235bad8b 100644 --- a/docs/features/lifecycle.md +++ b/docs/features/lifecycle.md @@ -178,7 +178,7 @@ The sixth argument, *next*, is a function that can be called to continue the ren :::plot defer ```js-vue Plot.dot(penguins, { - x: "{{($replay1, "culmen_length_mm")}}", + x: "culmen_length_mm", y: "culmen_depth_mm", fill: "island", render(index, scales, values, dimensions, context, next) { @@ -210,7 +210,7 @@ In this chart, we render the dots one by one: :::plot defer ```js-vue Plot.dot(penguins, { - x: "{{($replay2, "culmen_length_mm")}}", + x: "culmen_length_mm", y: "culmen_depth_mm", fill: "island", render(index, scales, values, dimensions, context, next) {