Home > Enterprise >  Display data in chart form
Display data in chart form

Time:12-31

There are a lot of data in my database, how can I display them in report form? What I understand is a Crystal Reports, but the Crystal Reports SDK seems to only support the Framework framework. Mine is an asp.net core project. How do I do it?Need this styleenter image description here

CodePudding user response:

You can use Chart.js to handle this kind of scenario. You could have a try below sample to achieve what you are trying to. Additionally, you can have a look on enter image description here

Js fiddle Example:

You have have look on the real life example and source file example on jsfiddle.net

Js Reference Required:

You need following reference on your project.

https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.3.0/Chart.bundle.js

Hope above steps guided you accordingly.

  • Related