From 217f080f81ac6f596f193654d15d51fd31b38082 Mon Sep 17 00:00:00 2001 From: Nick Crews Date: Tue, 12 Sep 2023 14:53:56 -0800 Subject: [PATCH] docs: add interactivity to altair example on homepage --- docs/index.qmd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/index.qmd b/docs/index.qmd index d7880753efc1..f9e0297393ca 100644 --- a/docs/index.qmd +++ b/docs/index.qmd @@ -179,8 +179,10 @@ chart = ( .encode( x="species", y="count", + tooltip=["species", "count"], ) .properties(width=width, height=height) + .interactive() ) chart ```