Skip to content

Commit

Permalink
simpler for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Fil committed Oct 2, 2024
1 parent 8c6ee8a commit cf65384
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/features/lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit cf65384

Please sign in to comment.