]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Update link to Colors in documentation for each chart type
authorzachpanz88 <zachary@panzarino.com>
Tue, 12 Jul 2016 15:33:48 +0000 (11:33 -0400)
committerzachpanz88 <zachary@panzarino.com>
Tue, 12 Jul 2016 15:33:48 +0000 (11:33 -0400)
docs/03-Line-Chart.md
docs/04-Bar-Chart.md
docs/05-Radar-Chart.md
docs/06-Polar-Area-Chart.md
docs/07-Pie-Doughnut-Chart.md
docs/08-Bubble-Chart.md

index bc7a71a6cefa32036834c02f84f46e19a0b7cdda..2afed405aa501f46186cbf06d84904b9d9e2ce52 100644 (file)
@@ -40,7 +40,7 @@ xAxisID | `String` | The ID of the x axis to plot this dataset on
 yAxisID | `String` | The ID of the y axis to plot this dataset on
 fill | `Boolean` | If true, fill the area under the line
 lineTension | `Number` | Bezier curve tension of the line. Set to 0 to draw straightlines. *Note* This was renamed from 'tension' but the old name still works.
-backgroundColor | `Color` | The fill color under the line. See [Colors](#getting-started-colors)
+backgroundColor | `Color` | The fill color under the line. See [Colors](#chart-configuration-colors)
 borderWidth | `Number` | The width of the line in pixels
 borderColor | `Color` | The color of the line.
 borderCapStyle | `String` | Cap style of the line. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/lineCap)
index 4e27916b7cb7ff873f2e405ee436b1646f739a8f..6f0e2a707eaa4e3cfb0e09fde1ed5238c04c9d47 100644 (file)
@@ -42,7 +42,7 @@ data | `Array<Number>` | The data to plot as bars
 label | `String` | The label for the dataset which appears in the legend and tooltips
 xAxisID | `String` | The ID of the x axis to plot this dataset on
 yAxisID | `String` | The ID of the y axis to plot this dataset on
-backgroundColor | `Color or Array<Color>` | The fill color of the bars. See [Colors](#getting-started-colors)
+backgroundColor | `Color or Array<Color>` | The fill color of the bars. See [Colors](#chart-configuration-colors)
 borderColor | `Color or Array<Color>` | Bar border color
 borderWidth | `Number or Array<Number>` | Border width of bar in pixels
 borderSkipped | `String or Array<String>` | Which edge to skip drawing the border for. Options are 'bottom', 'left', 'top', and 'right'
index ce98dc4e973830927f1c55f01423c14c95a55bda..161f787683ca5aa9036aa6f344c8a95744f5e700 100644 (file)
@@ -34,7 +34,7 @@ data | `Array<Number>` | The data to plot in a line
 label | `String` | The label for the dataset which appears in the legend and tooltips
 fill | `Boolean` | If true, fill the area under the line
 lineTension | `Number` | Bezier curve tension of the line. Set to 0 to draw straightlines. *Note* This was renamed from 'tension' but the old name still works.
-backgroundColor | `Color` | The fill color under the line. See [Colors](#getting-started-colors)
+backgroundColor | `Color` | The fill color under the line. See [Colors](#chart-configuration-colors)
 borderWidth | `Number` | The width of the line in pixels
 borderColor | `Color` | The color of the line.
 borderCapStyle | `String` | Cap style of the line. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/lineCap)
index 3b94b731837b78b0813ef48e50bb4dc505ee443b..a92d8893ff2c15d0e7fa6daf3c1d63afc6b42d92 100644 (file)
@@ -31,7 +31,7 @@ Property | Type | Usage
 --- | --- | ---
 data | `Array<Number>` | The data to plot as bars
 label | `String` | The label for the dataset which appears in the legend and tooltips
-backgroundColor | `Array<Color>` | The fill color of the arcs. See [Colors](#getting-started-colors)
+backgroundColor | `Array<Color>` | The fill color of the arcs. See [Colors](#chart-configuration-colors)
 borderColor | `Array<Color>` | Arc border color
 borderWidth | `Array<Number>` | Border width of arcs in pixels
 hoverBackgroundColor | `Array<Color>` | Arc background color when hovered
index df76406554185b5d125901694b049da3faf171af..b3a05551b44a74b08f3aac8de8a6daa11ae6491b 100644 (file)
@@ -46,7 +46,7 @@ Property | Type | Usage
 --- | --- | ---
 data | `Array<Number>` | The data to plot as arcs
 label | `String` | The label for the dataset which appears in the legend and tooltips
-backgroundColor | `Array<Color>` | The fill color of the arcs. See [Colors](#getting-started-colors)
+backgroundColor | `Array<Color>` | The fill color of the arcs. See [Colors](#chart-configuration-colors)
 borderColor | `Array<Color>` | Arc border color
 borderWidth | `Array<Number>` | Border width of arcs in pixels
 hoverBackgroundColor | `Array<Color>` | Arc background color when hovered
index cca36640655cef79a3faf6dceed28c40c6b0b79c..085718bd40f4ef235bfc2209bf1147fed7e62ce2 100644 (file)
@@ -27,7 +27,7 @@ Property | Type | Usage
 --- | --- | ---
 data | `Array<BubbleDataObject>` | The data to plot as bubbles. See [Data format](#bubble-chart-data-format)
 label | `String` | The label for the dataset which appears in the legend and tooltips
-backgroundColor | `Color Array<Color>` | The fill color of the bubbles.
+backgroundColor | `Color Array<Color>` | The fill color of the bubbles. See [Colors](#chart-configuration-colors)
 borderColor | `Color or Array<Color>` | The stroke color of the bubbles.
 borderWidth | `Number or Array<Number>` | The stroke width of bubble in pixels.
 hoverBackgroundColor | `Color or Array<Color>` | The fill color of the bubbles when hovered.