]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Fix line to time axis documentation in bar chart docs (#4979)
authorEvert Timberg <evert.timberg+github@gmail.com>
Wed, 22 Nov 2017 23:07:36 +0000 (18:07 -0500)
committerGitHub <noreply@github.com>
Wed, 22 Nov 2017 23:07:36 +0000 (18:07 -0500)
docs/charts/bar.md

index cd5e8c9f39137f54c03e051986e92e55277e5e73..64515ed20d82a973ac265e553bc99ddd02b73998 100644 (file)
@@ -152,7 +152,7 @@ The `data` property of a dataset for a bar chart is specified as a an array of n
 data: [20, 10]
 ```
 
-You can also specify the dataset as x/y coordinates when using the [time scale](./time.md).
+You can also specify the dataset as x/y coordinates when using the [time scale](../axes/cartesian/time.md#time-cartesian-axis).
 
 ```javascript
 data: [{x:'2016-12-25', y:20}, {x:'2016-12-26', y:10}]