Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 into main
  • Loading branch information
vishwas-r committed Nov 27, 2020
2 parents e7148e1 + eec379e commit f296a2b
Showing 1 changed file with 42 additions and 2 deletions.
44 changes: 42 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,42 @@
# CanvasJS-Data-Parser
CanvasJS Data Parser - Parse Data to CanvasJS accepted Format
CanvasJS Chart DataParser
=========================

This plugin allows you to parse custom data-format to format accepted by CanvasJS


## CanvasJS
CanvasJS is an HTML5 & JavaScript based Charting Library that runs on all modern devices including iPhone, Android, Desktops, etc. Charts are beautiful and API is very simple to use.

#### CanvasJS Features:

* Simple API and easy to use
* Supports 30+ different types of Charts / Graphs
* 10x faster than conventional Flash / SVG based Charting Libraries
* Comes with Several beautiful looking themes
* Well Maintained and Updated Documentation
* Works across browsers (Chrome, Firefox, Safari, IE8+)
* Can be integrated with Serverside and Frontend technologies like ASP.Net, PHP, Spring MVC, JSP, jQuery, Angular, React, etc.

#### How to Use?

var chart = new CanvasJS.Chart("chartContainer", {
.
.
.
//Chart Options
data: [{
dataPoints: CanvasJS.parseData([71,55,50,65,95,68,28,34,14])
}]
.
.
.
.
});
chart.render();


#### Resources:

Code: [Github Repo](/~https://github.com/vishwas-r/CanvasJS-Data-Parser)

Documentation: [CanvasJS Documentation](https://canvasjs.com/docs/)

0 comments on commit f296a2b

Please sign in to comment.