If a VictoryTooltip is shown close to the edge of chart, it might get clipped.

Is it possible for the VictoryTooltip to be rendered outside of the chart container?
You most probably have to add overflow: visible to the svg container. Or remove clip-path if existing.
https://stackoverflow.com/questions/1572587/allow-svg-graphics-to-overflow-outside-the-containing-svg-element
You're right. Looks like normalize.css was applying this rule:
svg:not(:root) {
overflow: hidden;
}
which was messing with the svg container.
any idea if it is possible to add overflow: visible to the svg container using victory prop style={...}? https://codesandbox.io/s/jjp8p0751w
Most helpful comment
any idea if it is possible to add
overflow: visibleto the svg container using victory propstyle={...}? https://codesandbox.io/s/jjp8p0751w