]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Update docs and add plugin section (suggested by @simonbrunel) 3110/head
authorZach Panzarino <zachary@panzarino.com>
Tue, 9 Aug 2016 14:34:59 +0000 (14:34 +0000)
committerZach Panzarino <zachary@panzarino.com>
Tue, 9 Aug 2016 14:34:59 +0000 (14:34 +0000)
docs/00-Getting-Started.md
docs/09-Advanced.md
docs/10-Notes.md

index 155b40c7222b4f21a465452f8e669c30ea32a7de..d6e9f0f2716869db0860220cf49d21ba925ffd59 100644 (file)
@@ -136,4 +136,4 @@ var myChart = new Chart(ctx, {
 
 It's that easy to get started using Chart.js! From here you can explore the many options that can help you customise your charts with scales, tooltips, labels, colors, custom actions, and much more.
 
-There are many examples of Chart.js that are available in the [samples folder](https://github.com/chartjs/Chart.js/tree/master/samples) of the GitHub repository.
+There are many examples of Chart.js that are available in the `/samples` folder of `Chart.js.zip` that is attatched to every [release](https://github.com/chartjs/Chart.js/releases).
index b1e1b65bcafe8b58d4fbbb1d7ca084271b36e6d5..7c96883ba4861d17f830ebbf568969337b6e3a7c 100644 (file)
@@ -127,7 +127,7 @@ myLineChart.getDatasetAtEvent(e);
 
 #### .getDatasetMeta(index)
 
-Looks for the dataset that matches the current index and returns that metadata. This returned data has all of the metadata that is used to construct the chart, and can be used to share data between charts.
+Looks for the dataset that matches the current index and returns that metadata. This returned data has all of the metadata that is used to construct the chart.
 
 The `data` property of the metadata will contain information about each point, rectangle, etc. depending on the chart type.
 
index 8cc10385118628afef9620d916bab1c126d9a145..fbeed85fd7b718bda3b0b0e8f30ca073518b72d0 100644 (file)
@@ -75,9 +75,20 @@ Built in Chart Types
 | Gauges | | ✓ | |
 | Maps (Heat/Tree/etc.) | | ✓ | |
 
+### Popular Plugins
+
+There are many plugins that add additional functionality to Chart.js. Some particularly notable ones are listed here. In addition, many plugins can be found on the [Chart.js GitHub organization](https://github.com/chartjs).
+
+ - <a href="https://github.com/chartjs/Chart.Zoom.js" target="_blank">Chart.Zoom.js</a> - Enable zooming and panning on charts
+ - <a href="https://github.com/chartjs/Chart.Annotation.js" target="_blank">Chart.Annotation.js</a> - Draw lines and boxes on chart area
+ - <a href="https://github.com/chartjs/Chart.BarFunnel.js" target="_blank">Chart.BarFunnel.js</a> - Adds a bar funnel chart type
+ - <a href="https://github.com/chartjs/Chart.Deferred.js" target="_blank">Chart.Deferred.js</a> - Defer initial chart update until chart scrolls into viewport
+ - <a href="https://github.com/chartjs/Chart.smith.js" target="_blank">Chart.Smith.js</a> - Adds a smith chart type
+ - <a href="https://github.com/chartjs/Chart.LinearGauge.js" target="_blank">Chart.LinearGauge.js</a> - Adds a linear gauge chart type
+
 ### Popular Extensions
 
-There are many extensions which are available for use with popular frameworks. Some particularly notable ones are listed here:
+There are many extensions which are available for use with popular frameworks. Some particularly notable ones are listed here.
 
 #### Angular
  - <a href="https://github.com/jtblin/angular-chart.js" target="_blank">angular-chart.js</a>