Questions tagged [alchemy.js]

A graph visualization application for the web based on d3.js

Website : http://graphalchemist.github.io/Alchemy/#/

Alchemy.js is a graph visualization application for the web that allows you to create full applications with built-in features like search, clustering, and filters, or embed small graphs as visual elements in larger projects.

Alchemy.js is built almost entirely in d3.js.

10 questions
3
votes
1 answer

Can't get alchemy.js graph visualisation to show panel, zoom or search

The alchemy.js lib is create and provides good abstraction for graph layouts. I can't seem to get the application example that has a panel, allows searching and filtering. Zooming does not work either. Here are the config values: var config =…
orbital
  • 943
  • 3
  • 16
  • 28
1
vote
1 answer

How can I change the dataSource for Alchemy.js

I have an alchemy graph displayed. new Alchemy(config); How can I change the config.dataSource and then redisplay the graph with the new data?
1
vote
1 answer

Can't render a simple HTML page example

I saw an example at http://graphalchemist.github.io/Alchemy/#/examples I am working with 'basic graph' example I wanted to copy the example on my own local computer. I made a directory with two files : trial.html and charlize.json , and copied the…
sam
  • 121
  • 2
  • 10
1
vote
1 answer

Alchemy.js simple example not working

I'm trying to implement this example in order to become familiar with Alchemy.js. http://graphalchemist.github.io/Alchemy/#/examples how can I fix this to make it work?
DamTheMam
  • 11
  • 3
1
vote
2 answers

from Neo4j to GraphJSON with Ruby

I'm trying to get visualizations using d3.js or alchemy.js--but alchemy, in particular, requires the datasource to be in GraphJSON. I've been playing around with the tutorials and examples of Max De Marzi (using neography), Michael Hunger (cy2neo,…
stephen
  • 195
  • 9
0
votes
1 answer

Neo4j getting relationship name for an uknown relationship in order to render with alchemy.js

I try to fetch the relatioships in order to render a neo4j graph using alchemy.js accorfind to the example I need to generate a Json that contains the nodes and links For the nodes I manage to list all graphs nodes using the query: MATCH (p) SET…
Dimitrios Desyllas
  • 9,082
  • 15
  • 74
  • 164
0
votes
1 answer

How to change node/edge caption color in Alchemy.js?

I am using Alchemy.js library and I need to change the node/edge caption color. Here is my config. var config = { dataSource: 'graphs.json', backgroundColor: "white", nodeCaptionsOnByDefault: true, …
Ramiz
  • 11
  • 4
0
votes
1 answer

Using jQuery to Interact with Alchemy.js SVG

How can I use jQuery to interact with SVG generated by Alchemy.js? I am attempting to use jQuery to interact with SVG elements built by Alchemy.js. The following code does not work as expected (allowing me to click on a link and see an alert with…
atrobinson
  • 31
  • 2
0
votes
1 answer

How can I add html to alchemy.js captions

Is it possible to add html elements such as inside the caption of a node in Alchemy.js? My alchemy config has the following: nodeCaption: "title", and if I have json like: { "nodes": [ { "id": "1", "title": "Some…
benjovanic
  • 537
  • 1
  • 5
  • 18
0
votes
1 answer

Color edges in Neo4j graph using PHP

The objective of my application is to secure the data using a Neo4j graph and PHP. I have some users, each one has access to a specific folder. For example: Yannick has access to Folder1 Julie has access to Folder2 If oneday, Yannick got access…