]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Replace html extension with md extension for docs (#11439)
authorJacco van den Berg <jaccoberg2281@gmail.com>
Mon, 7 Aug 2023 22:12:44 +0000 (00:12 +0200)
committerGitHub <noreply@github.com>
Mon, 7 Aug 2023 22:12:44 +0000 (00:12 +0200)
* Replace html extension with md extension for docs

* Revert some links

* Commit saved files

79 files changed:
docs/axes/labelling.md
docs/developers/index.md
docs/general/colors.md
docs/getting-started/usage.md
docs/index.md
docs/samples/advanced/data-decimation.md
docs/samples/advanced/derived-axis-type.md
docs/samples/advanced/derived-chart-type.md
docs/samples/advanced/linear-gradient.md
docs/samples/advanced/programmatic-events.md
docs/samples/advanced/progress-bar.md
docs/samples/advanced/radial-gradient.md
docs/samples/animations/delay.md
docs/samples/animations/drop.md
docs/samples/animations/loop.md
docs/samples/animations/progressive-line-easing.md
docs/samples/animations/progressive-line.md
docs/samples/area/line-boundaries.md
docs/samples/area/line-datasets.md
docs/samples/area/line-drawtime.md
docs/samples/area/line-stacked.md
docs/samples/area/radar.md
docs/samples/bar/border-radius.md
docs/samples/bar/floating.md
docs/samples/bar/horizontal.md
docs/samples/bar/stacked-groups.md
docs/samples/bar/stacked.md
docs/samples/bar/vertical.md
docs/samples/legend/events.md
docs/samples/legend/html.md
docs/samples/legend/point-style.md
docs/samples/legend/position.md
docs/samples/legend/title.md
docs/samples/line/interpolation.md
docs/samples/line/line.md
docs/samples/line/multi-axis.md
docs/samples/line/point-styling.md
docs/samples/line/segments.md
docs/samples/line/stepped.md
docs/samples/line/styling.md
docs/samples/other-charts/bubble.md
docs/samples/other-charts/combo-bar-line.md
docs/samples/other-charts/doughnut.md
docs/samples/other-charts/multi-series-pie.md
docs/samples/other-charts/pie.md
docs/samples/other-charts/polar-area-center-labels.md
docs/samples/other-charts/radar-skip-points.md
docs/samples/other-charts/radar.md
docs/samples/other-charts/scatter-multi-axis.md
docs/samples/other-charts/scatter.md
docs/samples/other-charts/stacked-bar-line.md
docs/samples/plugins/chart-area-border.md
docs/samples/plugins/doughnut-empty-state.md
docs/samples/plugins/quadrants.md
docs/samples/scale-options/center.md
docs/samples/scale-options/grid.md
docs/samples/scale-options/ticks.md
docs/samples/scale-options/titles.md
docs/samples/scales/linear-min-max-suggested.md
docs/samples/scales/linear-min-max.md
docs/samples/scales/linear-step-size.md
docs/samples/scales/log.md
docs/samples/scales/stacked.md
docs/samples/scales/time-combo.md
docs/samples/scales/time-line.md
docs/samples/scales/time-max-span.md
docs/samples/scriptable/bar.md
docs/samples/scriptable/bubble.md
docs/samples/scriptable/line.md
docs/samples/scriptable/pie.md
docs/samples/scriptable/polar.md
docs/samples/scriptable/radar.md
docs/samples/subtitle/basic.md
docs/samples/title/alignment.md
docs/samples/tooltip/content.md
docs/samples/tooltip/html.md
docs/samples/tooltip/interactions.md
docs/samples/tooltip/point-style.md
docs/samples/tooltip/position.md

index 134979ac301f5ab009534e64efc232ad05d4b913..98583e964fd44490cf33cfa586e3918708577128 100644 (file)
@@ -31,7 +31,7 @@ The call to the method is scoped to the scale. `this` inside the method is the s
 If the callback returns `null` or `undefined` the associated grid line will be hidden.
 
 :::tip
-The [category axis](../axes/cartesian/category), which is the default x-axis for line and bar charts, uses the `index` as internal data format. For accessing the label, use `this.getLabelForValue(value)`. [API: getLabelForValue](../api/classes/Scale.html#getlabelforvalue)
+The [category axis](../axes/cartesian/category), which is the default x-axis for line and bar charts, uses the `index` as internal data format. For accessing the label, use `this.getLabelForValue(value)`. [API: getLabelForValue](../api/classes/Scale.md#getlabelforvalue)
 :::
 
 In the following example, every label of the Y-axis would be displayed with a dollar sign at the front.
index c1df9ed0f508b3655d06bc0bffcefa07df152a6c..d1e78e97a45484d1f6231c04e73fa10df9dd1332 100644 (file)
@@ -18,7 +18,7 @@ Latest builds are available for testing at:
 
 :::warning Warning
 
-Development builds **must not** be used for production purposes or as replacement for a CDN. See [available CDNs](../getting-started/installation.html#cdn).
+Development builds **must not** be used for production purposes or as replacement for a CDN. See [available CDNs](../getting-started/installation.md#cdn).
 
 :::
 
index 9d364fa7a5f322956ae5e007579e81221b65be76..49f1b2cacf1d379994358011491410fb01365b24 100644 (file)
@@ -4,7 +4,7 @@ Charts support three color options:
 * for geometric elements, you can change *background* and *border* colors;
 * for textual elements, you can change the *font* color.
 
-Also, you can change the whole [canvas background](../configuration/canvas-background.html).
+Also, you can change the whole [canvas background](../configuration/canvas-background.md).
 
 ## Default colors
 
index 3f26017e4da82b654c6fb44e8ff253bef23f38f5..d5add3b7ab8596de8b24a4f4b74f938e9f512972 100644 (file)
@@ -49,7 +49,7 @@ Run `npm install`, `yarn install`, or `pnpm install` to install the dependencies
 </html>
 ```
 
-As you can see, Chart.js requires minimal markup: a `canvas` tag with an `id` by which we’ll reference the chart later. By default, Chart.js charts are [responsive](../configuration/responsive.html) and take the whole enclosing container. So, we set the width of the `div` to control chart width.
+As you can see, Chart.js requires minimal markup: a `canvas` tag with an `id` by which we’ll reference the chart later. By default, Chart.js charts are [responsive](../configuration/responsive.md) and take the whole enclosing container. So, we set the width of the `div` to control chart width.
 
 Lastly, let’s create the `src/acquisitions.js` file with the following contents:
 
@@ -96,7 +96,7 @@ Time to run the example with `npm run dev`, `yarn dev`, or `pnpm dev` and naviga
 
 ![result](./usage-1.png)
 
-With just a few lines of code, we’ve got a chart with a lot of features: a [legend](../configuration/legend.html), [grid lines](../samples/scale-options/grid.html), [ticks](../samples/scale-options/ticks.html), and [tooltips](../configuration/tooltip.html) shown on hover. Refresh the web page a few times to see that the chart is also [animated](../configuration/animations.html#animations). Try clicking on the “Acquisitions by year” label to see that you’re also able to toggle datasets visibility (especially useful when you have multiple datasets). 
+With just a few lines of code, we’ve got a chart with a lot of features: a [legend](../configuration/legend.md), [grid lines](../samples/scale-options/grid.md), [ticks](../samples/scale-options/ticks.md), and [tooltips](../configuration/tooltip.md) shown on hover. Refresh the web page a few times to see that the chart is also [animated](../configuration/animations.md#animations). Try clicking on the “Acquisitions by year” label to see that you’re also able to toggle datasets visibility (especially useful when you have multiple datasets). 
 
 ### Simple customizations
 
@@ -133,7 +133,7 @@ Replace the `new Chart(...);` invocation in `src/acquisitions.js` with the follo
   );
 ```
 
-As you can see, we’ve added the `options` property to the second argument—that’s how you can specify all kinds of customization options for Chart.js. The [animation is disabled](../configuration/animations.html#disabling-animation) with a boolean flag provided via `animation`. Most chart-wide options (e.g., [responsiveness](../configuration/responsive.html) or [device pixel ratio](../configuration/device-pixel-ratio.html)) are configured like this.
+As you can see, we’ve added the `options` property to the second argument—that’s how you can specify all kinds of customization options for Chart.js. The [animation is disabled](../configuration/animations.md#disabling-animation) with a boolean flag provided via `animation`. Most chart-wide options (e.g., [responsiveness](../configuration/responsive.md) or [device pixel ratio](../configuration/device-pixel-ratio.md)) are configured like this.
 
 The legend and tooltips are hidden with boolean flags provided under the respective sections in `plugins`. Note that some of Chart.js features are extracted into plugins: self-contained, separate pieces of code. A few of them are available as a part of [Chart.js distribution](https://github.com/chartjs/Chart.js/tree/master/src/plugins), other plugins are maintained independently and can be located in the [awesome list](https://github.com/chartjs/awesome) of plugins, framework integrations, and additional chart types.
 
@@ -252,7 +252,7 @@ We’re done with the bar chart. Let’s try another Chart.js chart type.
 
 Chart.js supports many common chart types.
 
-For instance, [Bubble chart](../charts/bubble.html) allows to display three dimensions of data at the same time: locations on `x` and `y` axes represent two dimensions, and the third dimension is represented by the size of the individual bubbles.
+For instance, [Bubble chart](../charts/bubble.md) allows to display three dimensions of data at the same time: locations on `x` and `y` axes represent two dimensions, and the third dimension is represented by the size of the individual bubbles.
 
 To create the chart, stop the already running application, then go to `src/index.html`, and uncomment the following two lines:
 
@@ -301,7 +301,7 @@ Now, reset caches with `rm -rf .parcel-cache` and start the application again wi
 
 Well, it doesn’t look pretty.
 
-First of all, the chart is not square. Artworks’ width and height are equally important so we’d like to make the chart width equal to its height as well. By default, Chart.js charts have the [aspect ratio](../configuration/responsive.html) of either 1 (for all radial charts, e.g., a doughnut chart) or 2 (for all the rest). Let’s modify the aspect ratio for our chart:
+First of all, the chart is not square. Artworks’ width and height are equally important so we’d like to make the chart width equal to its height as well. By default, Chart.js charts have the [aspect ratio](../configuration/responsive.md) of either 1 (for all radial charts, e.g., a doughnut chart) or 2 (for all the rest). Let’s modify the aspect ratio for our chart:
 
 ```jsx
 // ...
@@ -349,7 +349,7 @@ Great! Behold the updated chart:
 
 ![result](./usage-5.png)
 
-However, there’s one more nitpick: what are these numbers? It’s not very obvious that the units are centimetres. Let’s apply a [custom tick format](../axes/labelling.html#creating-custom-tick-formats) to both axes to make things clear. We’ll provide a callback function that would be called to format each tick value. Here’s the updated axes configuration:
+However, there’s one more nitpick: what are these numbers? It’s not very obvious that the units are centimetres. Let’s apply a [custom tick format](../axes/labelling.md#creating-custom-tick-formats) to both axes to make things clear. We’ll provide a callback function that would be called to format each tick value. Here’s the updated axes configuration:
 
 ```jsx
 // ...
@@ -434,13 +434,13 @@ As you can see, we define three datasets with different labels. Each dataset get
 
 ![result](./usage-7.png)
 
-Here we rely on the default color palette. However, keep in mind every chart type supports a lot of [dataset options](../charts/bubble.html#dataset-properties) that you can feel free to customize.
+Here we rely on the default color palette. However, keep in mind every chart type supports a lot of [dataset options](../charts/bubble.md#dataset-properties) that you can feel free to customize.
 
 ### Plugins
 
-Another—and very powerful!—way to customize Chart.js charts is to use plugins. You can find some in the [plugin directory](https://github.com/chartjs/awesome#plugins) or create your own, ad-hoc ones. In Chart.js ecosystem, it’s idiomatic and expected to fine tune charts with plugins. For example, you can customize [canvas background](../configuration/canvas-background.html) or [add a border](../samples/plugins/chart-area-border.html) to it with simple ad-hoc plugins. Let’s try the latter.
+Another—and very powerful!—way to customize Chart.js charts is to use plugins. You can find some in the [plugin directory](https://github.com/chartjs/awesome#plugins) or create your own, ad-hoc ones. In Chart.js ecosystem, it’s idiomatic and expected to fine tune charts with plugins. For example, you can customize [canvas background](../configuration/canvas-background.md) or [add a border](../samples/plugins/chart-area-border.md) to it with simple ad-hoc plugins. Let’s try the latter.
 
-Plugins have an [extensive API](../developers/plugins.html) but, in a nutshell, a plugin is defined as an object with a `name` and one or more callback functions defined in the extension points. Insert the following snippet before and in place of the `new Chart(...);` invocation in `src/dimensions.js`:
+Plugins have an [extensive API](../developers/plugins.md) but, in a nutshell, a plugin is defined as an object with a `name` and one or more callback functions defined in the extension points. Insert the following snippet before and in place of the `new Chart(...);` invocation in `src/dimensions.js`:
 
 ```jsx
 // ...
@@ -556,7 +556,7 @@ Chart.register(
 );
 ```
 
-You can see that, in addition to the `Chart` class, we’re also loading a controller for the chart type, scales, and other chart elements (e.g., bars or points). You can look all available components up in the [documentation](./integration.html#bundle-optimization).
+You can see that, in addition to the `Chart` class, we’re also loading a controller for the chart type, scales, and other chart elements (e.g., bars or points). You can look all available components up in the [documentation](./integration.md#bundle-optimization).
 
 Alternatively, you can follow Chart.js advice in the console. For example, if you forget to import `BarController` for your bar chart, you’ll see the following message in the browser console:
 
@@ -586,6 +586,6 @@ By importing and registering only select components, we’ve removed more than 5
 
 Now you’re familiar with all major concepts of Chart.js: chart types and elements, datasets, customization, plugins, components, and tree-shaking.
 
-Feel free to review many [examples of charts](../samples/information.html) in the documentation and check the [awesome list](https://github.com/chartjs/awesome) of Chart.js plugins and additional chart types as well as [framework integrations](https://github.com/chartjs/awesome#integrations) (e.g., React, Vue, Svelte, etc.). Also, don’t hesitate to join [Chart.js Discord](https://discord.gg/HxEguTK6av) and follow [Chart.js on Twitter](https://twitter.com/chartjs).
+Feel free to review many [examples of charts](../samples/information.md) in the documentation and check the [awesome list](https://github.com/chartjs/awesome) of Chart.js plugins and additional chart types as well as [framework integrations](https://github.com/chartjs/awesome#integrations) (e.g., React, Vue, Svelte, etc.). Also, don’t hesitate to join [Chart.js Discord](https://discord.gg/HxEguTK6av) and follow [Chart.js on Twitter](https://twitter.com/chartjs).
 
 Have fun and good luck building with Chart.js!
\ No newline at end of file
index 44dd7931c37c4d0803fab78ebbbc4c7359b9d32d..437185f67d8ba6c1f7bfd25ac703dc5f43f0cf33 100644 (file)
@@ -3,10 +3,10 @@
 Welcome to Chart.js!
 
 * **[Get started with Chart.js](./getting-started/) — best if you're new to Chart.js**
-* Migrate from [Chart.js v3](./migration/v4-migration.html) or [Chart.js v2](./migration/v3-migration.html)
+* Migrate from [Chart.js v3](./migration/v4-migration.md) or [Chart.js v2](./migration/v3-migration.md)
 * Join the community on [Discord](https://discord.gg/HxEguTK6av) and [Twitter](https://twitter.com/chartjs)
 * Post a question tagged with `chart.js` on [Stack Overflow](https://stackoverflow.com/questions/tagged/chart.js)
-* [Contribute to Chart.js](./developers/contributing.html)
+* [Contribute to Chart.js](./developers/contributing.md)
 
 ## Why Chart.js
 
@@ -16,7 +16,7 @@ Chart.js was created and [announced](https://twitter.com/_nnnick/status/31359920
 
 ### Features
 
-Chart.js provides a set of frequently used chart types, plugins, and customization options. In addition to a reasonable set of [built-in chart types](./charts/area.html), you can use additional community-maintained [chart types](https://github.com/chartjs/awesome#charts). On top of that, it’s possible to combine several chart types into a [mixed chart](./charts/mixed.html) (essentially, blending multiple chart types into one on the same canvas).
+Chart.js provides a set of frequently used chart types, plugins, and customization options. In addition to a reasonable set of [built-in chart types](./charts/area.md), you can use additional community-maintained [chart types](https://github.com/chartjs/awesome#charts). On top of that, it’s possible to combine several chart types into a [mixed chart](./charts/mixed.md) (essentially, blending multiple chart types into one on the same canvas).
 
 Chart.js is highly customizable with [custom plugins](https://github.com/chartjs/awesome#plugins) to create annotations, zoom, or drag-and-drop functionalities to name a few things.
 
@@ -30,7 +30,7 @@ Chart.js comes with built-in TypeScript typings and is compatible with all popul
 
 ### Developer experience
 
-Chart.js has very thorough documentation (yes, you're reading it), [API reference](./api/), and [examples](./samples/information.html). Maintainers and community members eagerly engage in conversations on [Discord](https://discord.gg/HxEguTK6av), [GitHub Discussions](https://github.com/chartjs/Chart.js/discussions), and [Stack Overflow](https://stackoverflow.com/questions/tagged/chart.js) where more than 11,000 questions are tagged with `chart.js`.
+Chart.js has very thorough documentation (yes, you're reading it), [API reference](./api/), and [examples](./samples/information.md). Maintainers and community members eagerly engage in conversations on [Discord](https://discord.gg/HxEguTK6av), [GitHub Discussions](https://github.com/chartjs/Chart.js/discussions), and [Stack Overflow](https://stackoverflow.com/questions/tagged/chart.js) where more than 11,000 questions are tagged with `chart.js`.
 
 ### Canvas rendering
 
@@ -38,7 +38,7 @@ Chart.js renders chart elements on an HTML5 canvas unlike several others, mostly
 
 ### Performance
 
-Chart.js is very well suited for large datasets. Such datasets can be efficiently ingested using the internal format, so you can skip data [parsing](./general/performance.html#parsing) and [normalization](./general/performance.html#data-normalization). Alternatively, [data decimation](./configuration/decimation.html) can be configured to sample the dataset and reduce its size before rendering.
+Chart.js is very well suited for large datasets. Such datasets can be efficiently ingested using the internal format, so you can skip data [parsing](./general/performance.md#parsing) and [normalization](./general/performance.md#data-normalization). Alternatively, [data decimation](./configuration/decimation.md) can be configured to sample the dataset and reduce its size before rendering.
 
 In the end, the canvas rendering that Chart.js uses reduces the toll on your DOM tree in comparison to SVG rendering. Also, tree-shaking support allows you to include minimal parts of Chart.js code in your bundle, reducing bundle size and page load time.
 
index 4eb986ff196ef1b0ad5459909e6ebd67e2b89b5c..ae108239a0385f04ac2921b0b35d357a04eda878 100644 (file)
@@ -112,7 +112,7 @@ module.exports = {
 };
 ```
 ## Docs
-* [Data Decimation](../../configuration/decimation.html)
-* [Line](../../charts/line.html)
-* [Time Scale](../../axes/cartesian/time.html)
+* [Data Decimation](../../configuration/decimation.md)
+* [Line](../../charts/line.md)
+* [Time Scale](../../axes/cartesian/time.md)
 
index 08f0e862be88e7cd2f396a56a97579e3384bad60..f9705e2cc31415cfc0e971b004b27cacc8f082f2 100644 (file)
@@ -50,6 +50,6 @@ module.exports = {
 <<< @/scripts/log2.js
 
 ## Docs
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-* [New Axes](../../developers/axes.html)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+* [New Axes](../../developers/axes.md)
index 8e74ec9ebb54a818152ee2f510e5a82c216d030d..7f853e3aaa3bd6489570758ccf1f7dd2da644eff 100644 (file)
@@ -46,5 +46,5 @@ module.exports = {
 <<< @/scripts/derived-bubble.js
 
 ## Docs
-* [Bubble Chart](../../charts/bubble.html)
-* [New Charts](../../developers/charts.html)
+* [Bubble Chart](../../charts/bubble.md)
+* [New Charts](../../developers/charts.md)
index 0dce9e1d70625bd58fc2894a3503ff2505bd20b8..e045f7cd522f23660365912e8e36ad39eb0f0fbb 100644 (file)
@@ -110,9 +110,9 @@ module.exports = {
 ```
 
 ## Docs
-* [Colors](../../general/colors.html)
-  * [Patterns and Gradients](../../general/colors.html#patterns-and-gradients)  
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
-* [Line](../../charts/line.html)
+* [Colors](../../general/colors.md)
+  * [Patterns and Gradients](../../general/colors.md#patterns-and-gradients)  
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
+* [Line](../../charts/line.md)
index 8233ff615d3718d627f46ab23ff35eacf6676e75..4157d7ee98bb127665df920bcd96dbabb63cf8b6 100644 (file)
@@ -105,11 +105,11 @@ module.exports = {
 ## API
 * [Chart](../../api/classes/Chart.md)
   * [`setActiveElements`](../../api/classes/Chart.md#setactiveelements)
-* [TooltipModel](../../api/interfaces/TooltipModel.html)
-  * [`setActiveElements`](../../api/interfaces/TooltipModel.html#setactiveelements)
+* [TooltipModel](../../api/interfaces/TooltipModel.md)
+  * [`setActiveElements`](../../api/interfaces/TooltipModel.md#setactiveelements)
 
 ## Docs
-* [Bar](../../charts/bar.html)
-    * [Interactions (`hoverBorderColor`)](../../charts/bar.html#interactions)
-* [Interactions](../../configuration/interactions.html)
-* [Tooltip](../../configuration/tooltip.html)
+* [Bar](../../charts/bar.md)
+    * [Interactions (`hoverBorderColor`)](../../charts/bar.md#interactions)
+* [Interactions](../../configuration/interactions.md)
+* [Tooltip](../../configuration/tooltip.md)
index 329dfe67d0ad3d6e57f7180b5d8258a19acaca70..016831b22a7a3d284c01f4f4152e11ce6ff5b252 100644 (file)
@@ -144,9 +144,9 @@ module.exports = {
 ```
 
 ## Docs
-* [Animations](../../configuration/animations.html)
-  * [Animation Callbacks](../../configuration/animations.html#animation-callbacks)
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
+* [Animations](../../configuration/animations.md)
+  * [Animation Callbacks](../../configuration/animations.md#animation-callbacks)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
index 3ab3faedc88a53df775b248f847b1cf2b4f055c9..0c07502be657981ad4b51af546bb9ef9d4149613 100644 (file)
@@ -118,5 +118,5 @@ module.exports = {
 ## Docs
 * [Polar Area Chart](../../charts/polar.md)
   * [Styling](../../charts/polar.md#styling)
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
\ No newline at end of file
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
\ No newline at end of file
index 696ef2c6e356a559c142a38751435b5f8da8703d..cec3267991c1603846a8c729a2ea359ed1d16e44 100644 (file)
@@ -78,10 +78,10 @@ module.exports = {
 };
 ```
 ## Docs
-* [Animations](../../configuration/animations.html)
-  * [animation (`delay`)](../../configuration/animations.html#animation)
-  * [Animation Callbacks](../../configuration/animations.html#animation-callbacks)
-* [Bar](../../charts/bar.html)
-  * [Stacked Bar Chart](../../charts/bar.html#stacked-bar-chart)
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
+* [Animations](../../configuration/animations.md)
+  * [animation (`delay`)](../../configuration/animations.md#animation)
+  * [Animation Callbacks](../../configuration/animations.md#animation-callbacks)
+* [Bar](../../charts/bar.md)
+  * [Stacked Bar Chart](../../charts/bar.md#stacked-bar-chart)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
index 5a3e62215845ff973e4202fe8d7de90f5f087cf9..37e1af0cd7696d968807e7830764db8a96443b67 100644 (file)
@@ -124,13 +124,13 @@ module.exports = {
 };
 ```
 ## Docs
-* [Area](../../charts/area.html)
-* [Animations](../../configuration/animations.html)
-  * [animation (`easing`)](../../configuration/animations.html#animation)
-  * [animations (`from`)](../../configuration/animations.html#animations-2)
-* [Line](../../charts/line.html)
-  * [Line Styling](../../charts/line.html#line-styling)
+* [Area](../../charts/area.md)
+* [Animations](../../configuration/animations.md)
+  * [animation (`easing`)](../../configuration/animations.md#animation)
+  * [animations (`from`)](../../configuration/animations.md#animations-2)
+* [Line](../../charts/line.md)
+  * [Line Styling](../../charts/line.md#line-styling)
     * `fill`
     * `tension`
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
index 9e02a36a3a9d82269e819c9f1921dcd9e6f007be..efd1fd8e15e0c4cc6e92e42afb1f1ac9ed720f37 100644 (file)
@@ -124,18 +124,18 @@ module.exports = {
 };
 ```
 ## Docs
-* [Animations](../../configuration/animations.html)
-  * [animation](../../configuration/animations.html#animation)
+* [Animations](../../configuration/animations.md)
+  * [animation](../../configuration/animations.md#animation)
     * `duration`
     * `easing`
     * **`loop`**
-  * [Default animations (`radius`)](../../configuration/animations.html#default-animations)
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Elements](../../configuration/elements.html)
-  * [Point Configuration](../../configuration/elements.html#point-configuration)
+  * [Default animations (`radius`)](../../configuration/animations.md#default-animations)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Elements](../../configuration/elements.md)
+  * [Point Configuration](../../configuration/elements.md#point-configuration)
     * `hoverRadius`
     * `hoverBackgroundColor`
-* [Line](../../charts/line.html)
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
-* [Tooltip (`enabled`)](../../configuration/tooltip.html)
+* [Line](../../charts/line.md)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
+* [Tooltip (`enabled`)](../../configuration/tooltip.md)
index f0f5e6077b1ff584864a6443b03b7f47014b084e..d64c2cec01e2c6438606b3921b9ca54faa388164 100644 (file)
@@ -173,17 +173,17 @@ module.exports = {
 ## Api 
 * [Chart](../../api/classes/Chart.md)
   * [`getDatasetMeta`](../../api/classes/Chart.md#getdatasetmeta)
-* [Scale](../../api/classes/Scale.html)
-  * [`getPixelForValue`](../../api/classes/Scale.html#getpixelforvalue)
+* [Scale](../../api/classes/Scale.md)
+  * [`getPixelForValue`](../../api/classes/Scale.md#getpixelforvalue)
 ## Docs
-* [Animations](../../configuration/animations.html)
-  * [animation](../../configuration/animations.html#animation)
+* [Animations](../../configuration/animations.md)
+  * [animation](../../configuration/animations.md#animation)
     * `delay`
     * `duration`
     * `easing`
     * `loop`
-  * [Easing](../../configuration/animations.html#easing)
-* [Line](../../charts/line.html)
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
-    * [Data Context](../../general/options.html#data)
+  * [Easing](../../configuration/animations.md#easing)
+* [Line](../../charts/line.md)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
+    * [Data Context](../../general/options.md#data)
index d115cb79ee03aa74756878c506490d9f893f6ecb..5db427af736054eb8267a003b3493dc76a3a6a50 100644 (file)
@@ -92,16 +92,16 @@ module.exports = {
 ## Api 
 * [Chart](../../api/classes/Chart.md)
   * [`getDatasetMeta`](../../api/classes/Chart.md#getdatasetmeta)
-* [Scale](../../api/classes/Scale.html)
-  * [`getPixelForValue`](../../api/classes/Scale.html#getpixelforvalue)
+* [Scale](../../api/classes/Scale.md)
+  * [`getPixelForValue`](../../api/classes/Scale.md#getpixelforvalue)
 ## Docs
-* [Animations](../../configuration/animations.html)
-  * [animation](../../configuration/animations.html#animation)
+* [Animations](../../configuration/animations.md)
+  * [animation](../../configuration/animations.md#animation)
     * `delay`
     * `duration`
     * `easing`
     * `loop`
-* [Line](../../charts/line.html)
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
-    * [Data Context](../../general/options.html#data)
+* [Line](../../charts/line.md)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
+    * [Data Context](../../general/options.md#data)
index fa9c733e6ac5c29e70132884a3637c5647f09d70..f013db952ef0867f40a963380c6c2923c1348576 100644 (file)
@@ -120,8 +120,8 @@ module.exports = {
 ```
 
 ## Docs
-* [Area](../../charts/area.html)
-  * [Filling modes](../../charts/area.html#filling-modes)
+* [Area](../../charts/area.md)
+  * [Filling modes](../../charts/area.md#filling-modes)
     * Boundary: `'start'`, `'end'`, `'origin'`
-* [Line](../../charts/line.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Line](../../charts/line.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
index 409e98106d70239828aa63ed4d97f4b75e830177..0b380054b6be6d3147893790d15c892e09144ddd 100644 (file)
@@ -166,9 +166,9 @@ module.exports = {
 <div id="chart-analyser" class="analyser"></div>
 
 ## Docs
-* [Area](../../charts/area.html)
-  * [Filling modes](../../charts/area.html#filling-modes)
-* [Line](../../charts/line.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Area](../../charts/area.md)
+  * [Filling modes](../../charts/area.md#filling-modes)
+* [Line](../../charts/line.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
 * [Axes scales](../../axes/)
   * [Common options to all axes (`stacked`)](../../axes/#common-options-to-all-axes)
index c9cc8256c7a2b0c07fcb0bd7e80fce33cad21bdf..8cf5198fc81d8d3ee1988fd60edeb427569f4b21 100644 (file)
@@ -114,8 +114,8 @@ module.exports = {
 };
 ```
 ## Docs
-* [Area](../../charts/area.html)
-  * [Configuration (`drawTime`)](../../charts/area.html#configuration)
-* [Line](../../charts/line.html)
-  * [Line Styling (`tension`)](../../charts/line.html#line-styling)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Area](../../charts/area.md)
+  * [Configuration (`drawTime`)](../../charts/area.md#configuration)
+* [Line](../../charts/line.md)
+  * [Line Styling (`tension`)](../../charts/line.md#line-styling)
+* [Data structures (`labels`)](../../general/data-structures.md)
index 33280d3f6cbc91793155fff317097e9d41f55069..a711d125fb27eaee860590fea24ac9f646890f0e 100644 (file)
@@ -172,9 +172,9 @@ module.exports = {
 ```
 
 ## Docs
-* [Area](../../charts/area.html)
-  * [Filling modes](../../charts/area.html#filling-modes)
-* [Line](../../charts/line.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Area](../../charts/area.md)
+  * [Filling modes](../../charts/area.md#filling-modes)
+* [Line](../../charts/line.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
 * [Axes scales](../../axes/)
   * [Common options to all axes (`stacked`)](../../axes/#common-options-to-all-axes)
index 0888a5eff6a768db95fb23de1799849acf22fab0..66da8bf61902a175b337a4501d14d4c7522878bc 100644 (file)
@@ -141,8 +141,8 @@ module.exports = {
 <div id="chart-analyser" class="analyser"></div>
 
 ## Docs
-* [Area](../../charts/area.html)
-  * [Filling modes](../../charts/area.html#filling-modes)
-  * [`propagate`](../../charts/area.html#propagate)
-* [Radar](../../charts/radar.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Area](../../charts/area.md)
+  * [Filling modes](../../charts/area.md#filling-modes)
+  * [`propagate`](../../charts/area.md#propagate)
+* [Radar](../../charts/radar.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
index 786b32b8c021254cb7a8dd4d9a4ec39af3d59dcc..6cf5e03494e3f44d6352f6a05f2ed15656fe7f85 100644 (file)
@@ -71,6 +71,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Bar](../../charts/bar.html)
-  * [`borderRadius`](../../charts/bar.html#borderradius)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Bar](../../charts/bar.md)
+  * [`borderRadius`](../../charts/bar.md#borderradius)
+* [Data structures (`labels`)](../../general/data-structures.md)
index f7066bf6567303a09fd7d9cf1513ff02fcae2874..88832433d17f8df478f31445c2e8e515c469f9fa 100644 (file)
@@ -70,5 +70,5 @@ module.exports = {
 };
 ```
 ## Docs
-* [Bar](../../charts/bar.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Bar](../../charts/bar.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
index 9067ff94f4e355207c3009cfabb36668066fa491..85a17a421d5f690b84bd68358aeb5476704208f6 100644 (file)
@@ -123,6 +123,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Bar](../../charts/bar.html)
-  * [Horizontal Bar Chart](../../charts/bar.html#horizontal-bar-chart)
+* [Bar](../../charts/bar.md)
+  * [Horizontal Bar Chart](../../charts/bar.md#horizontal-bar-chart)
 
index cf2ddee3ca853f1564db9f98052a696814a8900b..f9dac39b4e8e6683a6e990556ca1c486a544f978 100644 (file)
@@ -81,8 +81,8 @@ module.exports = {
 ```
 
 ## Docs
-* [Bar](../../charts/bar.html)
-  * [Stacked Bar Chart](../../charts/bar.html#stacked-bar-chart)
-* [Data structures (`labels`)](../../general/data-structures.html)
-  * [Dataset Configuration (`stack`)](../../general/data-structures.html#dataset-configuration)
+* [Bar](../../charts/bar.md)
+  * [Stacked Bar Chart](../../charts/bar.md#stacked-bar-chart)
+* [Data structures (`labels`)](../../general/data-structures.md)
+  * [Dataset Configuration (`stack`)](../../general/data-structures.md#dataset-configuration)
 
index 958975913582f8b21e981c38411c8175cb70a609..6e2639c4b2e60707dedf184f4d54156c1312cdca 100644 (file)
@@ -72,6 +72,6 @@ module.exports = {
 };
 ```
 ## Docs
-* [Bar](../../charts/bar.html)
-  * [Stacked Bar Chart](../../charts/bar.html#stacked-bar-chart)
+* [Bar](../../charts/bar.md)
+  * [Stacked Bar Chart](../../charts/bar.md#stacked-bar-chart)
 
index 04184e1650dcf761ab90716979ea1f9dbf88809e..e14859cdd02105e46a9fe50e5629a5b39ec7f1c6 100644 (file)
@@ -115,5 +115,5 @@ module.exports = {
 ```
 
 ## Docs
-* [Bar](../../charts/bar.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Bar](../../charts/bar.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
index af455acf49a20a2e1c1600e304e3421be2dd49c5..fa715445ad5971040af1b0ff58f7ee0ff36f52dc 100644 (file)
@@ -57,7 +57,7 @@ module.exports = {
 ```
 
 ## Docs
-* [Doughnut and Pie Charts](../../charts/doughnut.html)
-* [Legend](../../configuration/legend.html)
+* [Doughnut and Pie Charts](../../charts/doughnut.md)
+* [Legend](../../configuration/legend.md)
   * `onHover`
   * `onLeave`
\ No newline at end of file
index 00c92c83fb2ad9fd2b8bdfdc13d4849cde11b48c..a1400a3d387317d2d67734179e4e5af8a50bf021 100644 (file)
@@ -134,8 +134,8 @@ module.exports = {
 ```
 
 ## Docs 
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-* [Legend](../../configuration/legend.html)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+* [Legend](../../configuration/legend.md)
   * `display: false`
-* [Plugins](../../developers/plugins.html)  
+* [Plugins](../../developers/plugins.md)  
index 0ab168a0b5a87fc76bc0d49ac9f714ec7f5e951b..355045c676edf2a1c150fc3439d45a1ca2f2860c 100644 (file)
@@ -59,11 +59,11 @@ module.exports = {
 ```
 
 ## Docs 
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-* [Legend](../../configuration/legend.html)
-  * [Legend Label Configuration](../../configuration/legend.html#legend-label-configuration)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+* [Legend](../../configuration/legend.md)
+  * [Legend Label Configuration](../../configuration/legend.md#legend-label-configuration)
     * `usePointStyle`
-* [Elements](../../configuration/elements.html)
-  * [Point Configuration](../../configuration/elements.html#point-configuration)
-  * [Point Styles](../../configuration/elements.html#point-styles)
+* [Elements](../../configuration/elements.md)
+  * [Point Configuration](../../configuration/elements.md#point-configuration)
+  * [Point Styles](../../configuration/elements.md#point-styles)
index f226c66cf459c9bbe2c470aba870b0a9264234f6..8597f4ed15b864e6c14d078379def26dde9255b1 100644 (file)
@@ -68,7 +68,7 @@ module.exports = {
 ```
 
 ## Docs 
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-* [Legend](../../configuration/legend.html)
-  * [Position](../../configuration/legend.html#position)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+* [Legend](../../configuration/legend.md)
+  * [Position](../../configuration/legend.md#position)
index f3572e7a2bfa1d1f7c25b0d28d29aa05e01214aa..98ba86f404cd8102562ca143fbee94949ade34d9 100644 (file)
@@ -74,6 +74,6 @@ module.exports = {
 ```
 
 ## Docs 
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-* [Legend](../../configuration/legend.html)
\ No newline at end of file
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+* [Legend](../../configuration/legend.md)
\ No newline at end of file
index a27f6adfd1b525b8783d402df28c1075d7f155a7..9e7bfa151f64ec175d110c4527faa7a6e80425c0 100644 (file)
@@ -77,7 +77,7 @@ module.exports = {
 ```
 
 ## Docs 
-* [Line](../../charts/line.html)
-  * [`cubicInterpolationMode`](../../charts/line.html#cubicinterpolationmode)
-  * [Line Styling (`tension`)](../../charts/line.html#line-styling)
+* [Line](../../charts/line.md)
+  * [`cubicInterpolationMode`](../../charts/line.md#cubicinterpolationmode)
+  * [Line Styling (`tension`)](../../charts/line.md#line-styling)
 
index ea3f06dccb8fab7e1a79ecc9665b8aeb80bfe889..c3682f690930b4bb00a0228eea9a7570149df332 100644 (file)
@@ -114,5 +114,5 @@ module.exports = {
 ```
 
 ## Docs
-* [Line](../../charts/line.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Line](../../charts/line.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
index eb2921300f7531e3c2c10684d01508fb8b912ec1..d1c625517cab45da96ee6f1089f3faec0dd2e173 100644 (file)
@@ -89,6 +89,6 @@ module.exports = {
 * [Axes scales](../../axes/)
 * [Cartesian Axes](../../axes/cartesian/)
   * [Axis Position](../../axes/cartesian/#axis-position)
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
 
index 714cd052bd54aab7d7e571b8b9072141d4b5f61b..dbb31c20edad12db660d8d4a254f97aa3f5c2ba8 100644 (file)
@@ -145,6 +145,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-  * [Point Styling](../../charts/line.html#point-styling)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+  * [Point Styling](../../charts/line.md#point-styling)
index 2540c60b8820465e57f292c805f120a54a17c54d..c4b847d66e10c7397d37f85c9d50714b4eb72c1a 100644 (file)
@@ -45,9 +45,9 @@ module.exports = {
 ```
 
 ## Docs
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-  * [Line Styling](../../charts/line.html#line-styling)
-  * [Segment](../../charts/line.html#segment)
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
\ No newline at end of file
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+  * [Line Styling](../../charts/line.md#line-styling)
+  * [Segment](../../charts/line.md#segment)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
\ No newline at end of file
index 1005ab0c771a1296e87f9d54bc59e952c38d2d02..9536d195e140e08d7d4d1d9882de481c64d5bb2d 100644 (file)
@@ -93,6 +93,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-  * [Stepped](../../charts/line.html#stepped)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+  * [Stepped](../../charts/line.md#stepped)
index f3212b49c1215796648736a2b1d56431bef66c63..18778d0a7d2c34118fc4dd4d0d9604c5ab3d30e1 100644 (file)
@@ -76,6 +76,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-  * [Line Styling](../../charts/line.html#line-styling)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+  * [Line Styling](../../charts/line.md#line-styling)
index 5170387ebbf8b733ae5971756bac896bed82ced6..26f4d40fd92b02a633ae0cee306cad9c5ad1d552 100644 (file)
@@ -109,4 +109,4 @@ module.exports = {
 ```
 
 ## Docs
-* [Bubble](../../charts/bubble.html)
+* [Bubble](../../charts/bubble.md)
index 99fcff10d4e44477d4a412fbf81b79a9ee3dccb9..d6451b740d76ec111994f522dd30910827947875 100644 (file)
@@ -118,6 +118,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Bar](../../charts/bar.html)
-* [Line](../../charts/line.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Bar](../../charts/bar.md)
+* [Line](../../charts/line.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
index 8cde2082f00898d9f54622b4c586c1857e86f7dc..6d67b16955dbebaa1102b87b2f012eb65ed3ed86 100644 (file)
@@ -136,4 +136,4 @@ module.exports = {
 ```
 
 ## Docs
-* [Doughnut and Pie Charts](../../charts/doughnut.html)
+* [Doughnut and Pie Charts](../../charts/doughnut.md)
index 735addee06ce9cf9a5d3cf56459b11bcc0cbb604..8332fc09bd2eb2f4b5efb7be84ad72137449a50d 100644 (file)
@@ -91,6 +91,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Doughnut and Pie Charts](../../charts/doughnut.html)
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
\ No newline at end of file
+* [Doughnut and Pie Charts](../../charts/doughnut.md)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
\ No newline at end of file
index ee11cec7b5a859f7209bec8ba03016b3ea46dc22..465869b888a52e7d8cf61ef4c2eb6df72fffa9f4 100644 (file)
@@ -111,4 +111,4 @@ module.exports = {
 };
 ```
 ## Docs
-* [Doughnut and Pie Charts](../../charts/doughnut.html)
+* [Doughnut and Pie Charts](../../charts/doughnut.md)
index 9eb9aaffb68f4fc60de58ffe131040bebe9d1d55..c25f8421317e9c52c02967f66d90a6891f0853f9 100644 (file)
@@ -103,5 +103,5 @@ module.exports = {
 
 ## Docs
 * [Polar Area Chart](../../charts/polar.md)
-* [Linear Radial Axis](../../axes/radial/linear.html)
-  * [Point Label Options (`centerPointLabels`)](../../axes/radial/linear.html#point-label-options)
\ No newline at end of file
+* [Linear Radial Axis](../../axes/radial/linear.md)
+  * [Point Label Options (`centerPointLabels`)](../../axes/radial/linear.md#point-label-options)
\ No newline at end of file
index b2162c760c0f766361c5568fe378a53153a0066e..d3420656016f5e062e74d80d06a3f447379bf32f 100644 (file)
@@ -86,5 +86,5 @@ module.exports = {
 ```
 
 ## Docs
-* [Radar](../../charts/radar.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Radar](../../charts/radar.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
index b48092321d02b35d1a7cd446ad45071d4f078dcb..4ebc516a38c259198bbdaedb68d01fb9e3d72d92 100644 (file)
@@ -111,5 +111,5 @@ module.exports = {
 ```
 
 ## Docs
-* [Radar](../../charts/radar.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Radar](../../charts/radar.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
index 32eb822c84c2a48d1c7b529a83bad30f210cbf67..6b3cb8e70d215ea140864309697f407022a698e6 100644 (file)
@@ -131,6 +131,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Scatter](../../charts/scatter.html)
+* [Scatter](../../charts/scatter.md)
 * [Cartesian Axes](../../axes/cartesian/)
   * [Axis Position](../../axes/cartesian/#axis-position)
index c2fb43c9b5af1eb2ae85cfd5bba1441e2c5d06f5..2ab75fbfbe84e8ab52576ae7d4ada722628d9bfd 100644 (file)
@@ -109,4 +109,4 @@ module.exports = {
 ```
 
 ## Docs
-* [Scatter](../../charts/scatter.html)
+* [Scatter](../../charts/scatter.md)
index 24e22f2cc783f4ab38ccd166eb2c55603af78956..20651722f3b1559259864e08f7d0e05d6c8f19ea 100644 (file)
@@ -123,8 +123,8 @@ module.exports = {
 * [Axes scales](../../axes/)
   * [Common options to all axes (`stacked`)](../../axes/#common-options-to-all-axes)
   * [Stacking](../../axes/#stacking)
-* [Bar](../../charts/bar.html)
-* [Line](../../charts/line.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
-  * [Dataset Configuration (`stack`)](../../general/data-structures.html#dataset-configuration)
+* [Bar](../../charts/bar.md)
+* [Line](../../charts/line.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
+  * [Dataset Configuration (`stack`)](../../general/data-structures.md#dataset-configuration)
 
index 3593770d14b065d082b02e79a452d98f9107826c..cccfa2473eca8119152d4570cf7a360850dd6cf4 100644 (file)
@@ -64,6 +64,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Line](../../charts/line.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Plugins](../../developers/plugins.html)
+* [Line](../../charts/line.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Plugins](../../developers/plugins.md)
index c9afac0c29d0a313059945c91d316166829b44cb..1e9267b7920d58c954db30551aaf45fc6760bd54 100644 (file)
@@ -78,6 +78,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Plugins](../../developers/plugins.html)
-* [Doughnut and Pie Charts](../../charts/doughnut.html)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Plugins](../../developers/plugins.md)
+* [Doughnut and Pie Charts](../../charts/doughnut.md)
index e4715b15da19f7c782251aa4978e39e562a038e0..3354a6a0290c8843f2c3e3166341581143984390 100644 (file)
@@ -80,6 +80,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Plugins](../../developers/plugins.html)
-* [Scatter](../../charts/scatter.html)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Plugins](../../developers/plugins.md)
+* [Scatter](../../charts/scatter.md)
index e7d0098af689b1535e6ca25a43b3333742f05d2b..b435c6174f5ee16e2dd84d7dd3c571e6fb144e21 100644 (file)
@@ -89,6 +89,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Scatter](../../charts/scatter.html)
+* [Scatter](../../charts/scatter.md)
 * [Cartesian Axes](../../axes/cartesian/)
   * [Axis Position](../../axes/cartesian/#axis-position)
\ No newline at end of file
index 487a1659c057d97b855639e4233cdc6d6de84b09..fdbea55de7b77654d2f5d6e45253a6d7f283fdf0 100644 (file)
@@ -98,10 +98,10 @@ module.exports = {
 ```
 
 ## Docs
-* [Line](../../charts/line.html)
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
-    * [Tick Context](../../general/options.html#tick)
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Axes Styling](../../axes/styling.html)
-  * [Grid Line Configuration](../../axes/styling.html#grid-line-configuration)
\ No newline at end of file
+* [Line](../../charts/line.md)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
+    * [Tick Context](../../general/options.md#tick)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Axes Styling](../../axes/styling.md)
+  * [Grid Line Configuration](../../axes/styling.md#grid-line-configuration)
\ No newline at end of file
index b97638fa0e67942b491f1213578a6f87ff17875d..e6e7bb2f94dc8b913ebaf8c956e7f27a346d08ec 100644 (file)
@@ -94,10 +94,10 @@ module.exports = {
 ```
 
 ## Docs
-* [Line](../../charts/line.html)
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
-    * [Tick Context](../../general/options.html#tick)
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Axes Styling](../../axes/styling.html)
-  * [Tick Configuration](../../axes/styling.html#tick-configuration)
\ No newline at end of file
+* [Line](../../charts/line.md)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
+    * [Tick Context](../../general/options.md#tick)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Axes Styling](../../axes/styling.md)
+  * [Tick Configuration](../../axes/styling.md#tick-configuration)
\ No newline at end of file
index d045bfdce664c0de8e4d8b3de6913c56b2537565..e49316b0671c216d3a09f5a284bf25de50ae67b2 100644 (file)
@@ -76,10 +76,10 @@ module.exports = {
 ```
 
 ## Docs
-* [Line](../../charts/line.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Axes Styling](../../axes/styling.html)
+* [Line](../../charts/line.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Axes Styling](../../axes/styling.md)
 * [Cartesian Axes](../../axes/cartesian/)
   * [Common options to all cartesian axes](../../axes/cartesian/#common-options-to-all-cartesian-axes)
-* [Labeling Axes](../../axes/labelling.html)
-  * [Scale Title Configuration](../../axes/labelling.html#scale-title-configuration)
\ No newline at end of file
+* [Labeling Axes](../../axes/labelling.md)
+  * [Scale Title Configuration](../../axes/labelling.md#scale-title-configuration)
\ No newline at end of file
index ae6bbe8208e4927ed2605acb5de1a560b7349d3b..3e6e4fdbd8d9a7ac13199306e349e143256eec85 100644 (file)
@@ -56,8 +56,8 @@ module.exports = {
 ```
 
 ## Docs
-* [Line](../../charts/line.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Line](../../charts/line.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
 * [Axes scales](../../axes/)
   * [Common options to all axes](../../axes/#common-options-to-all-axes)
   * [Axis Range Settings](../../axes/#axis-range-settings)
index 996b616721915824e29f871d26238d777fb9dbe7..29b8a2d17eb6befc9e068554fbff98bfe65b300d 100644 (file)
@@ -53,8 +53,8 @@ module.exports = {
 ```
 
 ## Docs
-* [Line](../../charts/line.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Line](../../charts/line.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
 * [Axes scales](../../axes/)
   * [Common options to all axes (`min`,`max`)](../../axes/#common-options-to-all-axes)
  
\ No newline at end of file
index 0303940c717830749e1385dd01a04b68bec16e29..da8905a0b6a9aed1e7428b9c8eef1968967a3d91 100644 (file)
@@ -139,10 +139,10 @@ module.exports = {
 ```
 
 ## Docs
-* [Line](../../charts/line.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Line](../../charts/line.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
 * [Axes scales](../../axes/)
   * [Common options to all axes (`min`,`max`)](../../axes/#common-options-to-all-axes)
-* [Linear Axis](../../axes/cartesian/linear.html)
-  * [Linear Axis specific tick options (`stepSize`)](../../axes/cartesian/linear.html#linear-axis-specific-tick-options)
-  * [Step Size](../../axes/cartesian/linear.html#step-size)
+* [Linear Axis](../../axes/cartesian/linear.md)
+  * [Linear Axis specific tick options (`stepSize`)](../../axes/cartesian/linear.md#linear-axis-specific-tick-options)
+  * [Step Size](../../axes/cartesian/linear.md#step-size)
index 59d3527cdef6189237cab1679783ca2857884cff..35ae8e6341492e175318b219497884702cbb81b6 100644 (file)
@@ -76,7 +76,7 @@ module.exports = {
 ```
 
 ## Docs
-* [Line](../../charts/line.html)
-* [Logarithmic Axis](../../axes/cartesian/logarithmic.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Line](../../charts/line.md)
+* [Logarithmic Axis](../../axes/cartesian/logarithmic.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
 
index 89651bfa6007602a6865d107cdf46caab1f4839e..461236dc95b53dbbfff9d1d1fc9dfd2dd3ab7fae 100644 (file)
@@ -71,7 +71,7 @@ module.exports = {
 ```
 
 ## Docs
-* [Line](../../charts/line.html)
+* [Line](../../charts/line.md)
 * [Axes scales](../../axes/)
   * [Stacking](../../axes/#stacking)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Data structures (`labels`)](../../general/data-structures.md)
index 0a84043f7a13fd682bfd2e2f5a4c24b18da9a885..9c7436ca219b3c92e19281d3ee2cbc8b01869f78 100644 (file)
@@ -85,7 +85,7 @@ module.exports = {
 ```
 
 ## Docs
-* [Bar](../../charts/bar.html)
-* [Line](../../charts/line.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Time Scale](../../axes/cartesian/time.html)
+* [Bar](../../charts/bar.md)
+* [Line](../../charts/line.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Time Scale](../../axes/cartesian/time.md)
index 78f16a45d39b89b1e5894d0fe4bac0df6c2ab39f..057fe90ea8f6644f0ebf918f5afc4721b6a72d8e 100644 (file)
@@ -112,5 +112,5 @@ module.exports = {
 ```
 
 ## Docs
-* [Line](../../charts/line.html)
-* [Time Cartesian Axis](../../axes/cartesian/time.html)
\ No newline at end of file
+* [Line](../../charts/line.md)
+* [Time Cartesian Axis](../../axes/cartesian/time.md)
\ No newline at end of file
index 84fa038d1f55f627db7890f83755875ac5a07dde..47d771f87735bd05bc04ede99b33b76fea0a85d7 100644 (file)
@@ -126,6 +126,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Line](../../charts/line.html)
-  * [`spanGaps`](../../charts/line.html#line-styling)
-* [Time Scale](../../axes/cartesian/time.html)
+* [Line](../../charts/line.md)
+  * [`spanGaps`](../../charts/line.md#line-styling)
+* [Time Scale](../../axes/cartesian/time.md)
index f6d89ca838ac16203de02a166fcffa2407769ab1..74562c881b8d623e04b886abc5953d0caea21070 100644 (file)
@@ -74,8 +74,8 @@ module.exports = {
 ```
 
 ## Docs
-* [Bar](../../charts/bar.html)
-* [Data structures (`labels`)](../../general/data-structures.html)
-  * [Dataset Configuration (`stack`)](../../general/data-structures.html#dataset-configuration)
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
+* [Bar](../../charts/bar.md)
+* [Data structures (`labels`)](../../general/data-structures.md)
+  * [Dataset Configuration (`stack`)](../../general/data-structures.md#dataset-configuration)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
index 3dff79ad9794fe9ccacc961697ca42a71dea93af..7d2c0286e81034a86e66f7cc5caebccb2dbd4160 100644 (file)
@@ -109,6 +109,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Bubble](../../charts/bubble.html)
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
\ No newline at end of file
+* [Bubble](../../charts/bubble.md)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
\ No newline at end of file
index bd231234909d49ce11abfe9f87f72204ce04a049..bef78abc737b2e965da619820df93bdc6a347d4b 100644 (file)
@@ -91,9 +91,9 @@ module.exports = {
 ```
 
 ## Docs
-* [Line](../../charts/line.html)
-  * [Point Styling](../../charts/line.html#point-styling)
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
-* [Data structures (`labels`)](../../general/data-structures.html)
+* [Line](../../charts/line.md)
+  * [Point Styling](../../charts/line.md#point-styling)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
+* [Data structures (`labels`)](../../general/data-structures.md)
 
index a5c948a07b058dcfd77e0e7476a0a78d70d4625a..1a633108c425613eb8d0399a50dfdc85245f35cf 100644 (file)
@@ -87,6 +87,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
-* [Doughnut and Pie Charts](../../charts/doughnut.html
\ No newline at end of file
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
+* [Doughnut and Pie Charts](../../charts/doughnut.md
\ No newline at end of file
index 587be6a0b8b6bbe543f8a95219dde51e554839a3..de2178b98d1a58acb7d72cb340e16ccbde38ddb6 100644 (file)
@@ -77,6 +77,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
 * [Polar Area Chart](../../charts/polar.md)
index 20114bb57d8f0ef8524a65a77798961c264a7be6..9ee177de891595e7e0297e3a9310d4e12e3084f2 100644 (file)
@@ -94,6 +94,6 @@ module.exports = {
 ```
 
 ## Docs
-* [Options](../../general/options.html)
-  * [Scriptable Options](../../general/options.html#scriptable-options)
-* [Radar](../../charts/radar.html)
+* [Options](../../general/options.md)
+  * [Scriptable Options](../../general/options.md#scriptable-options)
+* [Radar](../../charts/radar.md)
index c377e20d566e56805775e0b3547d17d49397a863..285ed2693ea554fd0e310b47bac576db204125a3 100644 (file)
@@ -55,7 +55,7 @@ module.exports = {
 ```
 
 ## Docs 
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-* [Title](../../configuration/title.html)
-* [Subtitle](../../configuration/subtitle.html)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+* [Title](../../configuration/title.md)
+* [Subtitle](../../configuration/subtitle.md)
index 197d64dc4939ceb676f816c8da772e1d0fc21129..5c612e709086f5d953980823fdee9f6c23fb8967 100644 (file)
@@ -69,6 +69,6 @@ module.exports = {
 ```
 
 ## Docs 
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-* [Title](../../configuration/title.html)
\ No newline at end of file
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+* [Title](../../configuration/title.md)
\ No newline at end of file
index 3abe1fc7b6fa47f06370414887063c66f09cc16b..bc5834a4e7c0e25024b6d1ac73bae1bb02c3ea6c 100644 (file)
@@ -66,7 +66,7 @@ module.exports = {
 ```
 
 ## Docs 
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-* [Tooltip](../../configuration/tooltip.html)
-  * [Tooltip Callbacks](../../configuration/tooltip.html#tooltip-callbacks)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+* [Tooltip](../../configuration/tooltip.md)
+  * [Tooltip Callbacks](../../configuration/tooltip.md#tooltip-callbacks)
index b139afd9cbf438c1acf267c959801ea42448e989..267787eaf330d1d7f97d78cb9e9c12a5e5d32856 100644 (file)
@@ -165,8 +165,8 @@ module.exports = {
 ```
 
 ## Docs 
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-* [Tooltip](../../configuration/tooltip.html)
-  * [External (Custom) Tooltips](../../configuration/tooltip.html#external-custom-tooltips)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+* [Tooltip](../../configuration/tooltip.md)
+  * [External (Custom) Tooltips](../../configuration/tooltip.md#external-custom-tooltips)
   
\ No newline at end of file
index 86cf5fc961453926ac6e592e273c2b8bb6fdee4a..1b4e3937eeba3dd34e942c6b8b09db459ce2291d 100644 (file)
@@ -130,7 +130,7 @@ module.exports = {
 ```
 
 ## Docs 
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-* [Tooltip](../../configuration/tooltip.html)
-* [Interactions](../../configuration/interactions.html)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+* [Tooltip](../../configuration/tooltip.md)
+* [Interactions](../../configuration/interactions.md)
index d78bb62e8777510ed9881c4d2172332319d8b1ba..d6dcfda5b20095dd9e658b431ac4439dd54ed356 100644 (file)
@@ -80,10 +80,10 @@ module.exports = {
 ```
 
 ## Docs 
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-* [Tooltip](../../configuration/tooltip.html)
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+* [Tooltip](../../configuration/tooltip.md)
   * `usePointStyle`
-* [Elements](../../configuration/elements.html)
-  * [Point Styles](../../configuration/elements.html#point-styles)
+* [Elements](../../configuration/elements.md)
+  * [Point Styles](../../configuration/elements.md#point-styles)
 
index 34b4bfbaa30599d183199f53342580d6e2f11de9..4209de5a6f7f75090c190a514ef1cbd13bf5e29c 100644 (file)
@@ -101,8 +101,8 @@ module.exports = {
 ```
 
 ## Docs 
-* [Data structures (`labels`)](../../general/data-structures.html)
-* [Line](../../charts/line.html)
-* [Tooltip](../../configuration/tooltip.html)
-  * [Position Modes](../../configuration/tooltip.html#position-modes)
-  * [Custom Position Modes](../../configuration/tooltip.html#custom-position-modes)
\ No newline at end of file
+* [Data structures (`labels`)](../../general/data-structures.md)
+* [Line](../../charts/line.md)
+* [Tooltip](../../configuration/tooltip.md)
+  * [Position Modes](../../configuration/tooltip.md#position-modes)
+  * [Custom Position Modes](../../configuration/tooltip.md#custom-position-modes)
\ No newline at end of file