looking for a responsive javascript charting library [closed] - javascript

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
There are a couple of good charting libs out there, but most of them are not responsive.
I have tried morris.js but this isn't responsive.
So I am looking for one who is responsive and free and looks good like morris.js(no highcharts, flot, google)
Anybody?

Try amCharts:
http://www.amcharts.com/javascript-charts/
They respond to container changes dynamically so would be perfect for adaptive layouts.

you can use chartjs
https://github.com/nnnick/Chart.js
and my extended solution to make it responsive
https://github.com/arifLogic/respChartJS
EDIT :
now we can use responsive chart like Chartist js. Yet, there is many more js library out there. https://gionkunz.github.io/chartist-js/

You could use JS charts, this is all client side and is responsive
http://www.jscharts.com

Related

Build a tree using JQuery [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have a js object that contains hierarchical data, and I want to represent it using a tree or something like how windows do with it's folders in the exploring panel.
Is there any JQuery library that could help me doing this ?
Take a look at jsTree. It's cross-browser compatible back to IE8
Treeview also looks right, but it's lacking support (the last commit was over a year ago). On their website, they recommend jsTree.
You will easy get a javascript api and js, i was get help before use in my java tiles project
visit http://dhtmlx.com/docs/products/dhtmlxTree/

An alternative to NVD3.js (reusable charts library)? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I've been looking recently at solution for creating charts for a web page.
After a bad experience with (an outdated version) of Highcharts, I tried to give a chance for D3.js, which I find very handy.
Since I'm on a tight schedule for this project, I'm trying to find a library for reusable charts that sits on top of D3.
So far the only candidates I found are Miso Project's d3.chart and NVD3.js.
The problems are that d3.chart is only a tiny framework for making reusable charts, while NVD3 is very extensive, but not very flexible and very undocumented.
Is there an alternative to those libraries (or should I start writing one)?
Did you check out Vega?
I do agree with ckersch's comment above that, in the long run, writing your own visualization from the ground up with d3 is usually appropriate... and fun. (Of course this also depends on what you're actually trying to accomplish.)
Personally, I would not recommend writing your own framework because, chances are, it won't be reusable beyond your current project.

A lightweight javascript library for interactive graph plotting? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am interested in knowing the most lightweight javascript library for plotting interactive graphs. The data that I have is mostly scientific data related to ocean research.
I know a few of the jquery library namely Highcharts, and JS charts. But what I am looking for is most lightweight library. The graph does not need to feed live data but it must be interactive.
I would definitely recommend D3.js.
There are some extremely well made data driven documents and examples using it. Many presentations from the recent VizSec conference made use of it as well.
Some of my co-workers have used Flot JQuery plugin. Check that out. http://www.flotcharts.org/

Is there a plugin/library that can allow me to make a beautiful scrolling wall? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
If you go to http://wonderwall.msn.com/, you'll notice that the wall is scrollable...and it's an awesome grid layout.
Is there a library that can do this? Preferably in JQuery
The javascript library used on this site was YUI.
Here is a link to there site.
http://developer.yahoo.com/yui/
Although i dont think there is one plugin that will achieve the total effect. The wonderwall website uses a clever combo of js and good css.

Does there exist a jQuery plugin or JavaScript library that allows Venn Diagram presentation? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm writing a jQuery application to allow analysis of data with the help of visual cues. My data is retrieved via XMLHttpRequest in the form of JSON. The visual cues include histograms, spark lines, and various other graph types. The idea is that the user is able to narrow their data via these various visual views.
My question is thus - aside from the Google Charts API, does there exist a JavaScript way of presenting a Venn Diagram?
Requirement: no Flash.
Canvas is acceptable.
In a word:
Raphael
An alternative to the vector-based Raphael approach would be processing.js which is canvas-based. That said, Raphael is a very nice drawing library as well.
I have been playing around a d3js based solution:
https://github.com/sidoh/venn
Hope it helps!

Categories