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

how to use cytoscape-sbgn-stylesheet in CytoscapeComponent? #85

Open
doudou673 opened this issue Aug 26, 2021 · 1 comment
Open

how to use cytoscape-sbgn-stylesheet in CytoscapeComponent? #85

doudou673 opened this issue Aug 26, 2021 · 1 comment

Comments

@doudou673
Copy link

doudou673 commented Aug 26, 2021

I want to use sbgn-stylesheet in my react app, but it doesn't work
image

@borivojevic
Copy link

You can use cy prop to access the Cytoscape API directly.

For example:

import cytoscape from "cytoscape";

import CytoscapeComponent from "react-cytoscapejs";
import sbgnStylesheet from "cytoscape-sbgn-stylesheet";

export default function App() {
  const cyStylesheet = sbgnStylesheet(cytoscape);
  return (
      <CytoscapeComponent
        elements={CytoscapeComponent.normalizeElements(elements)}
        cy={(cy) => cy.style(cyStylesheet)}
      />
  );
}

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

2 participants