Can I extract graph viewer part alone from ArangoDB web UI and integrate that into my web application?
Is this possible?
You can use keylines or cytoscape js for graph visualization, if you are looking for purpose made libraries. Otherwise you can use a lower level library like D3.
Related
I'm using java spring for backend of my website. I need to add some auto generating graphs to it. But I'm not sure for what I should look for. Should I use a Javascript library or can I do it in java as a backend function? This is my first time using this functionality.
P.S.
I have to deal with a often updating database to fetch data for those graphs.
Check this answer, I would suggest to go with option 2 and use a javascript library like highcharts.
Plot Graph In web application
I am looking for a web based UI for designing bpmn workflow, saving it as xml and to be able to integrate that with Angular front end.
As a first step for this I am looking to draw the bpmn shapes. Can any one tell me what will be the best way to draw the bpmn shapes using JavaScript? I checked with SVG, but using that seems you can only draw basic shapes.
Thanks in advance
I would look into bpmn.io and their bpmn-js library before trying to code something yourself. You would probably need to do the work of integrating it with Angular.
I'm trying to create dynamic graph inside a mobile cordova angularjs application.
I've done a bit of research and tried several libraries to plot a graph using a websocket protocol with no success.
I'm starting to think its not possible and would need to program a custom one.
Does angularjs support any live streamed graphs for use?
I would like to use something provided by highcharts a live dynamic spline chart.
Thank you very much.
My work involves pretty heavy visualization. I have been using D3.js and JavaScript Infovis toolkit for it.
I recently learned about how Dart is the new way of developing web apps.
Q1. Does Dart provide any libraries for doing visualization (Something of the level of D3.js or JavaScript Infovis toolkit) ?
Q2. If I move on to Dart, will I be able to use D3.js / Javascript Infovis toolkit along with Dart ?
Edit:
I found over the internet that we can use Javascript alongwith Dart.
I went through Dart FAQ, but couldn't really find anything related to visualization libraries or D3.js perse.
Thanks to dart:js you can use any js lib. See Using JavaScript from Dart for more details.
You could also use native ports of d3.js to make development easier since you can then write the visualization code in Dart. A good one you should look at is charted
In addition I created a package for the google visualization API.
Do you have any suggestions of graphing libraries to use with a GWT project? I need to graph a set of data points and several lines. Also some shading of the area under a line. I am open to suggestions of straight Javascript libraries or Java that I can just use with GWT.
D3.js
gwt-d3 is a GWT wrapper library around the D3.js library
Google Visualization API
Google Visualization API has a GWT binding which is no longer under active development
I recommend GWT Highcharts, a GWT wrapper of Highcharts library.
I'm currently using Google Visualization API but just wanted to bring attention to:
raphaelGWT (http://code.google.com/p/raphaelgwt/)
Ext-GWT (http://www.extjs.com/products/gwt/)
Keep in mind not ALL of the Google Visualization charts are completely javascript (ie The Motion Chart which is flashed based).