From 4661e623641229306a19f5e3101eb21fb763e54e Mon Sep 17 00:00:00 2001 From: Jerry Chang Date: Sun, 14 Jan 2018 13:19:47 -0800 Subject: [PATCH] Update links to chart.js documentation and remove extra section --- README.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 4e3fdb3..39b03f5 100644 --- a/README.md +++ b/README.md @@ -35,17 +35,11 @@ var MyComponent = React.createClass({ }); ``` -* ```data``` represents the chart data (see [chart.js](http://www.chartjs.org/) for details) -* ```options``` represents the chart options (see [chart.js](http://www.chartjs.org/) for details) +* ```data``` represents the chart data (see [chart.js](https://github.com/chartjs/Chart.js/tree/v1.1.1/docs) +* ```options``` represents the chart options (see [chart.js](https://github.com/chartjs/Chart.js/tree/v1.1.1/docs) for details) * all other parameters will be passed through to the ```canvas``` element * if data passed into the component changes, points will animate between values using chart.js' ```.update()```. If you want the chart destroyed and redrawn on every change, pass in ```redraw``` as a prop. For example `````` Chart References ---------------- The ```canvas``` element can be retrieved using ```getCanvas``` and the ```chartjs object``` can be retrieved using ```getChart```. - - -Chart.js V 1.1.1 Documentation ----------------- - -Please see [chart.js 1.1.1 documentation](https://github.com/chartjs/Chart.js/tree/v1.1.1/docs) for details.