Skip to content

Commit 6c22074

Browse files
authored
Fixed 4 links (#9720)
* Update linear.md * Update padding.md * Update padding.md * Update padding.md * Update padding.md * Update padding.md * Update padding.md * Update padding.md * Update padding.md * Update padding.md * Padding.md links work now * Decimation plugin links work now * Three links work now I’ve made the Specify a rotation value and ticks.sampleSize links work. * Update linear.md
1 parent 18fc976 commit 6c22074

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/general/padding.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ let chart = new Chart(ctx, {
4343

4444
## {x, y} object
4545

46-
This is a shorthand for defining left/right and top/bottom to same values.
46+
This is a shorthand for defining left/right and top/bottom to the same values.
4747

48-
For example, 10px left / right and 4px top / bottom padding on a Radial Linear Axis [tick backdropPadding](/axes/radial/linear.md#linear-radial-axis-specific-tick-options):
48+
For example, 10px left / right and 4px top / bottom padding on a Radial Linear Axis [tick backdropPadding](../axes/radial/linear.md#linear-radial-axis-specific-tick-options):
4949

5050
```javascript
5151
let chart = new Chart(ctx, {

docs/general/performance.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ Chart.js is fastest if you provide data with indices that are unique, sorted, an
1616

1717
Decimating your data will achieve the best results. When there is a lot of data to display on the graph, it doesn't make sense to show tens of thousands of data points on a graph that is only a few hundred pixels wide.
1818

19-
The [decimation plugin](/configuration/decimation.md) can be used with line charts to decimate data before the chart is rendered. This will provide the best performance since it will reduce the memory needed to render the chart.
19+
The [decimation plugin](../configuration/decimation.md) can be used with line charts to decimate data before the chart is rendered. This will provide the best performance since it will reduce the memory needed to render the chart.
2020

2121
Line charts are able to do [automatic data decimation during draw](#automatic-data-decimation-during-draw), when certain conditions are met. You should still consider decimating data yourself before passing it in for maximum performance since the automatic decimation occurs late in the chart life cycle.
2222

2323
## Tick Calculation
2424

2525
### Rotation
2626

27-
[Specify a rotation value](/axes/cartesian/index.md#tick-configuration) by setting `minRotation` and `maxRotation` to the same value, which avoids the chart from having to automatically determine a value to use.
27+
[Specify a rotation value](../axes/cartesian/index.md#tick-configuration) by setting `minRotation` and `maxRotation` to the same value, which avoids the chart from having to automatically determine a value to use.
2828

2929
### Sampling
3030

31-
Set the [`ticks.sampleSize`](/axes/cartesian/index.md#tick-configuration) option. This will determine how large your labels are by looking at only a subset of them in order to render axes more quickly. This works best if there is not a large variance in the size of your labels.
31+
Set the [`ticks.sampleSize`](../axes/cartesian/index.md#tick-configuration) option. This will determine how large your labels are by looking at only a subset of them in order to render axes more quickly. This works best if there is not a large variance in the size of your labels.
3232

3333
## Disable Animations
3434

0 commit comments

Comments
 (0)