Skip to content
This repository was archived by the owner on Jul 19, 2019. It is now read-only.

Commit 4661e62

Browse files
committed
Update links to chart.js documentation and remove extra section
1 parent dc3a2da commit 4661e62

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,11 @@ var MyComponent = React.createClass({
3535
});
3636
```
3737

38-
* ```data``` represents the chart data (see [chart.js](http://www.chartjs.org/) for details)
39-
* ```options``` represents the chart options (see [chart.js](http://www.chartjs.org/) for details)
38+
* ```data``` represents the chart data (see [chart.js](https://github.com/chartjs/Chart.js/tree/v1.1.1/docs)
39+
* ```options``` represents the chart options (see [chart.js](https://github.com/chartjs/Chart.js/tree/v1.1.1/docs) for details)
4040
* all other parameters will be passed through to the ```canvas``` element
4141
* 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 ```<LineChart data={this.state.chartData} redraw />```
4242

4343
Chart References
4444
----------------
4545
The ```canvas``` element can be retrieved using ```getCanvas``` and the ```chartjs object``` can be retrieved using ```getChart```.
46-
47-
48-
Chart.js V 1.1.1 Documentation
49-
----------------
50-
51-
Please see [chart.js 1.1.1 documentation](https://github.com/chartjs/Chart.js/tree/v1.1.1/docs) for details.

0 commit comments

Comments
 (0)