Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Runtime - no iframe option #1048

Open
3 tasks
curran opened this issue Oct 30, 2024 · 0 comments
Open
3 tasks

Runtime - no iframe option #1048

curran opened this issue Oct 30, 2024 · 0 comments

Comments

@curran
Copy link
Collaborator

curran commented Oct 30, 2024

It should be possible to inject the running viz into a div.

import './style.css';
import { main as originalMain } from '@curran/parallel-coordinates-with-brushing';
let state = {};
let main = originalMain;

const container = document.querySelector('.viz-container');

const render = () => {
  main(container, {
    state,
    setState,
  });
};

const setState = (next) => {
  state = next(state);
  render();
};

render();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant