How can I create charts for charts in angular js

I want to make charts, a histogram and a pie chart. it must receive input from users and cards that are entered into the schedule at run time. The chart needs to make changes as the user changes it at run time. it will be a big help. Thanks

+8
angularjs pie-chart bar-chart
source share
5 answers

you can use

+15
source share

I use data-driven documents http://d3js.org/ , there is also a good multi-access course at startup if you have a subscription.

http://www.pluralsight.com/courses/d3js-data-visualization-fundamentals

+2
source share

You can use the D3 library to write your own SVG data diagrams and then wrap them in Angular directives

or

You can use Angular-nvd3 (it already has cakes and histograms) that have already wrapped D3 all you need to do is determine the parameters of the chart and enter the data

If you prefer to work with Canvas than SVG, vis.js

0
source share

There are many modules for charting to choose from. http://ngmodules.org/modules?query=chart

0
source share

If you play well with Javascript, you can also use the guide: https://canvasjs.com/html5-javascript-pie-chart/

0
source share

All Articles