You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been trying to use the library in Node.js to render the graph as a string.
I also experimented with jsdom, but encountered numerous obstacles and couldn't get it to work.
If the library is framework-agnostic, would it be possible to add a variant where features like ResizeObserver, event listeners, etc., are not required?
Something like this would be very helpful.
const SvgElem = new XYContainerStatic({
width: 800,
height: 300,
classnames: 'xy',
components: [line],
xAxis: new Axis(),
yAxis: new Axis(),
}, data);
The text was updated successfully, but these errors were encountered:
I've been thinking about implementing this feature for over a year. Unfortunately, we don't have the bandwidth for it right now, but if you're interested in exploring it, I can help you run the Unovis development environment (it'll be pretty easy) and show you the parts of the code you might need to update.
If not, I'm sure we'll add support for server-side rendering at some point, but I don't know when.
Hi there,
I've been trying to use the library in Node.js to render the graph as a string.
I also experimented with jsdom, but encountered numerous obstacles and couldn't get it to work.
If the library is framework-agnostic, would it be possible to add a variant where features like ResizeObserver, event listeners, etc., are not required?
Something like this would be very helpful.
The text was updated successfully, but these errors were encountered: