diff --git a/README.md b/README.md index 39b03f5..0d793c8 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ var MyComponent = React.createClass({ }); ``` -* ```data``` represents the chart data (see [chart.js](https://github.com/chartjs/Chart.js/tree/v1.1.1/docs) +* ```data``` represents the chart data (see [chart.js](https://github.com/chartjs/Chart.js/tree/v1.1.1/docs) for details) * ```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 ``````