Library javascript for making histogram
Asked Answered
S

3

7

i work on asp.net mvc3 project , and i have to display histogram in view depending on data coming from action, can you suggest me any library javascript that can be easy to use and make good histogram, please any syggestion !!

Stalder answered 7/8, 2012 at 13:47 Comment(0)
I
11

http://www.highcharts.com/ - excellent integration and nice looking (free for non-commercial)

http://www.jqplot.com/ - open source, nice looking as well (free as in beer)

http://g.raphaeljs.com/ - another open source, well maintained

http://www.flotcharts.org/ - built specifically for JQuery (if that is what you are using)

Basically, take a look at these and others, find one that looks good and will easily plug in to your existing architecture and roll.

Imprint answered 7/8, 2012 at 15:10 Comment(1)
I like highcharts, raphael is pretty good as well. Basically, any of these will achieve your goals, you will need to do a little evaluation on your end to determine which one of these meets your reqs. the best.Imprint
A
4

If you just want to sort the data into bins, take a look at histogram.js.

Anchorage answered 5/9, 2013 at 21:25 Comment(0)
A
0

2023 open source alternative

If one is willing to decouple data binning from visualization, an alternative that is fully open source is to:

  • Bin the data using d3.bin (requires the the d3-array library); a full example is available here
  • Visualize the binned data using ApexCharts.js (full example here) or Chart.js (full example here)
Artel answered 26/4, 2023 at 18:17 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.