From: Evert Timberg Date: Wed, 22 Nov 2017 23:07:36 +0000 (-0500) Subject: Fix line to time axis documentation in bar chart docs (#4979) X-Git-Tag: v2.7.2~1^2~43 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ce7a9146b7e335e83e598c1039a808fa5ef4038;p=thirdparty%2FChart.js.git Fix line to time axis documentation in bar chart docs (#4979) --- diff --git a/docs/charts/bar.md b/docs/charts/bar.md index cd5e8c9f3..64515ed20 100644 --- a/docs/charts/bar.md +++ b/docs/charts/bar.md @@ -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}]