From: mikidoodle <91926675+mikidoodle@users.noreply.github.com> Date: Fri, 15 Oct 2021 19:36:53 +0000 (+0530) Subject: Fixed 4 links (#9720) X-Git-Tag: v3.6.0~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c220748db238d4e1dec9fe7166499cba93c4eb4;p=thirdparty%2FChart.js.git 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 --- diff --git a/docs/general/padding.md b/docs/general/padding.md index 09bfaba17..bcd73cfd4 100644 --- a/docs/general/padding.md +++ b/docs/general/padding.md @@ -43,9 +43,9 @@ let chart = new Chart(ctx, { ## {x, y} object -This is a shorthand for defining left/right and top/bottom to same values. +This is a shorthand for defining left/right and top/bottom to the same values. -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): +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): ```javascript let chart = new Chart(ctx, { diff --git a/docs/general/performance.md b/docs/general/performance.md index 7aadb158b..bc6cedb72 100644 --- a/docs/general/performance.md +++ b/docs/general/performance.md @@ -16,7 +16,7 @@ Chart.js is fastest if you provide data with indices that are unique, sorted, an 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. -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. +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. 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. @@ -24,11 +24,11 @@ Line charts are able to do [automatic data decimation during draw](#automatic-da ### Rotation -[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. +[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. ### Sampling -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. +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. ## Disable Animations