We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34c0d6f commit ac8f167Copy full SHA for ac8f167
examples/simple/src/components/InteractionMode.tsx
@@ -44,14 +44,17 @@ export default function GroupingModes() {
44
<button onClick={randomizeData}>Randomize Data</button>
45
<br />
46
47
+ <em>Voronoi is shown for demonstration purposes</em>
48
+ <br />
49
50
<ResizableBox>
51
<Chart
52
options={{
53
data,
54
interactionMode,
55
primaryAxis,
56
secondaryAxes,
-
57
+ showVoronoi: true,
58
onClickDatum: (datum) => {
59
if (datum) setState((old) => ({ ...old, clicked: datum as any }));
60
},
0 commit comments