Is your feature request related to a problem? Please describe.
We're run into some challenges using react-animated-dataset to build accessible visualizations—in particular using <a> link elements for handling click behavior instead of click handlers will get us a slough of native browser accessibility affordances.
Describe the solution you'd like
I'm not entirely sure the best solution here. I could imagine this going two ways:
- provide a
href/link prop on AnimatedDataset that will accept a URL and conditionally render a link tag around an element
- more generically, provide functionality for rendering more complex component trees than a single tag per datum (this could get quite complicated, though, I imagine)
Is your feature request related to a problem? Please describe.
We're run into some challenges using
react-animated-datasetto build accessible visualizations—in particular using<a>link elements for handling click behavior instead of click handlers will get us a slough of native browser accessibility affordances.Describe the solution you'd like
I'm not entirely sure the best solution here. I could imagine this going two ways:
href/linkprop onAnimatedDatasetthat will accept a URL and conditionally render a link tag around an element