]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Fix broken url in docs
authorSaintmalik <msalawu5@gmail.com>
Sat, 17 Oct 2020 00:01:52 +0000 (00:01 +0000)
committerSaintmalik <msalawu5@gmail.com>
Sat, 17 Oct 2020 00:01:52 +0000 (00:01 +0000)
docs/docs/charts/area.md
docs/docs/charts/scatter.md
docs/docs/configuration/elements.md
docs/docs/index.md

index 737f3737031b1e430a6201fdd0e8f85a9f7e0b87..4ec8edb75a917a6703c97198f31f73b53d6dc6f6 100644 (file)
@@ -2,7 +2,7 @@
 title: Area Chart
 ---
 
-Both [line](line.md) and [radar](radar.md) charts support a `fill` option on the dataset object which can be used to create space between two datasets or a dataset and a boundary, i.e. the scale `origin`, `start,` or `end` (see [filling modes](#filling-modes)).
+Both [line](./line.mdx) and [radar](./radar.mdx) charts support a `fill` option on the dataset object which can be used to create space between two datasets or a dataset and a boundary, i.e. the scale `origin`, `start,` or `end` (see [filling modes](#filling-modes)).
 
 > **Note:** this feature is implemented by the [`filler` plugin](https://github.com/chartjs/Chart.js/blob/master/src/plugins/plugin.filler.js).
 
index 614dfffbadcbf9d574d70a845cb0cb6486df29f3..e42d636962850fc21abb167471903a91c75a14a7 100644 (file)
@@ -35,7 +35,7 @@ var scatterChart = new Chart(ctx, {
 
 ## Dataset Properties
 
-The scatter chart supports all of the same properties as the [line chart](./line.md#dataset-properties).
+The scatter chart supports all of the same properties as the [line chart](./charts/line#dataset-properties).
 
 ## Data Structure
 
index de4eea45da92de23515922128606f33da39c2a0d..bb07b7433a5a55e8e0f8d44e8965e285b0f0cf52 100644 (file)
@@ -64,7 +64,7 @@ Global line options: `Chart.defaults.elements.line`.
 | `borderDashOffset` | `number` | `0.0` | Line dash offset. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/lineDashOffset).
 | `borderJoinStyle` | `string` | `'miter'` | Line join style. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/lineJoin).
 | `capBezierPoints` | `boolean` | `true` | `true` to keep Bézier control inside the chart, `false` for no restriction.
-| `cubicInterpolationMode` | `string` | `'default'` |  Interpolation mode to apply. [See more...](../charts/line.md#cubicinterpolationmode)
+| `cubicInterpolationMode` | `string` | `'default'` |  Interpolation mode to apply. [See more...](./charts/line.mdx/#cubicinterpolationmode)
 | `fill` | `boolean`\|`string` | `true` | How to fill the area under the line. See [area charts](../charts/area.md#filling-modes).
 | `stepped` | `boolean` | `false` | `true` to show the line as a stepped line (`tension` will be ignored).
 
index e43ea4a2d5fabf6c653039e37da644e4307521c4..7b141aa9090e7599c668142812507a360a19dd22 100644 (file)
@@ -57,7 +57,7 @@ var myChart = new Chart(ctx, {
 
 ## Contributing
 
-Before submitting an issue or a pull request to the project, please take a moment to look over the [contributing guidelines](./developers/contributing.md) first.
+Before submitting an issue or a pull request to the project, please take a moment to look over the [contributing guidelines](./docs/developers/contributing.md) first.
 
 For support using Chart.js, please post questions with the [`chartjs` tag on Stack Overflow](https://stackoverflow.com/questions/tagged/chartjs).