Skip to content

Commit 1437d3b

Browse files
committed
Updated Readme file
1 parent 8fe6810 commit 1437d3b

File tree

1 file changed

+34
-2
lines changed

1 file changed

+34
-2
lines changed

README.md

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,34 @@
1-
# Export-CanvasJS-Chart-Data-as-JSON
2-
Allows you to export CanvasJS Chart Data as JSON
1+
# Export CanvasJS Chart Data as JSON
2+
3+
This plugin allows you to export and save CanvasJS Chart's data as JSON.
4+
5+
## CanvasJS
6+
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.
7+
8+
### CanvasJS Features:
9+
- Simple API and easy to use
10+
- Supports 30+ different types of Charts / Graphs
11+
- 10x faster than conventional Flash / SVG based Charting Libraries
12+
- Comes with Several beautiful looking themes
13+
- Well Maintained and Updated Documentation
14+
- Works across browsers (Chrome, Firefox, Safari, IE8+)
15+
- Can be integrated with Serverside and Frontend technologies like ASP.Net, PHP, Spring MVC, JSP, jQuery, Angular, React, etc.
16+
17+
18+
### How to Use?
19+
- Create and Render CanvasJS Chart
20+
- Call CanvasJSDataAsJSON method with chart and filename as parameter
21+
```
22+
var chart = new CanvasJS.Chart("chartContainer", {
23+
.
24+
.
25+
.
26+
//Chart Options
27+
.
28+
.
29+
.
30+
});
31+
chart.render();
32+
33+
CanvasJSDataAsJSON(chart, "filename");
34+
```

0 commit comments

Comments
 (0)