You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*Simple HTML5 Charts using the canvas element*[chartjs.org](http://www.chartjs.org)
5
+
*Simple HTML5 Charts using the canvas element*[chartjs.org](https://www.chartjs.org)
6
6
7
7
## Installation
8
8
@@ -28,7 +28,7 @@ Files:
28
28
*`dist/Chart.js`
29
29
*`dist/Chart.min.js`
30
30
31
-
The stand-alone build includes Chart.js as well as the color parsing library. If this version is used, you are required to include [Moment.js](http://momentjs.com/) before Chart.js for the functionality of the time axis.
31
+
The stand-alone build includes Chart.js as well as the color parsing library. If this version is used, you are required to include [Moment.js](https://momentjs.com/) before Chart.js for the functionality of the time axis.
32
32
33
33
#### Bundled Build
34
34
Files:
@@ -39,11 +39,11 @@ The bundled build includes Moment.js in a single file. You should use this versi
39
39
40
40
## Documentation
41
41
42
-
You can find documentation at [www.chartjs.org/docs](http://www.chartjs.org/docs). The markdown files that build the site are available under `/docs`. Previous version documentation is available at [www.chartjs.org/docs/latest/developers/#previous-versions](http://www.chartjs.org/docs/latest/developers/#previous-versions).
42
+
You can find documentation at [www.chartjs.org/docs](https://www.chartjs.org/docs). The markdown files that build the site are available under `/docs`. Previous version documentation is available at [www.chartjs.org/docs/latest/developers/#previous-versions](https://www.chartjs.org/docs/latest/developers/#previous-versions).
43
43
44
44
## Contributing
45
45
46
-
Before submitting an issue or a pull request, please take a moment to look over the [contributing guidelines](https://github.com/chartjs/Chart.js/blob/master/docs/developers/contributing.md) first. For support using Chart.js, please post questions with the [`chartjs` tag on Stack Overflow](http://stackoverflow.com/questions/tagged/chartjs).
46
+
Before submitting an issue or a pull request, please take a moment to look over the [contributing guidelines](https://github.com/chartjs/Chart.js/blob/master/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).
47
47
48
48
## Building
49
49
Instructions on building and testing Chart.js can be found in [the documentation](https://github.com/chartjs/Chart.js/blob/master/docs/developers/contributing.md#building-and-testing).
@@ -54,4 +54,4 @@ Instructions on building and testing Chart.js can be found in [the documentation
54
54
55
55
## License
56
56
57
-
Chart.js is available under the [MIT license](http://opensource.org/licenses/MIT).
57
+
Chart.js is available under the [MIT license](https://opensource.org/licenses/MIT).
Copy file name to clipboardExpand all lines: docs/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ You can download the latest version of Chart.js from the [GitHub releases](https
10
10
11
11
It's easy to get started with Chart.js. All that's required is the script included in your page along with a single `<canvas>` node to render the chart.
12
12
13
-
In this example, we create a bar chart for a single dataset and render that in our page. You can see all the ways to use Chart.js in the [usage documentation](./getting-started/usage.md)
13
+
In this example, we create a bar chart for a single dataset and render that in our page. You can see all the ways to use Chart.js in the [usage documentation](./getting-started/usage.md).
Before submitting an issue or a pull request to the project, please take a moment to look over the [contributing guidelines](https://github.com/chartjs/Chart.js/blob/master/docs/developers/contributing.md) first.
60
60
61
-
For support using Chart.js, please post questions with the [`chartjs` tag on Stack Overflow](http://stackoverflow.com/questions/tagged/chartjs).
61
+
For support using Chart.js, please post questions with the [`chartjs` tag on Stack Overflow](https://stackoverflow.com/questions/tagged/chartjs).
62
62
63
63
## License
64
64
65
-
Chart.js is available under the [MIT license](http://opensource.org/licenses/MIT).
65
+
Chart.js is available under the [MIT license](https://opensource.org/licenses/MIT).
Copy file name to clipboardExpand all lines: docs/axes/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,19 +4,19 @@ Axes are an integral part of a chart. They are used to determine how data maps t
4
4
5
5
In a radial chart, such as a radar chart or a polar area chart, there is a single axis that maps points in the angular and radial directions. These are known as ['radial axes'](./radial/README.md#radial-axes).
6
6
7
-
Scales in Chart.js >V2.0 are significantly more powerful, but also different than those of v1.0.
7
+
Scales in Chart.js >v2.0 are significantly more powerful, but also different than those of v1.0.
8
8
* Multiple X & Y axes are supported.
9
9
* A built-in label auto-skip feature detects would-be overlapping ticks and labels and removes every nth label to keep things displaying normally.
10
-
* Scale titles are supported
11
-
* New scale types can be extended without writing an entirely new chart type
10
+
* Scale titles are supported.
11
+
* New scale types can be extended without writing an entirely new chart type.
12
12
13
13
# Common Configuration
14
14
15
-
The following properties are common to all axes provided by Chart.js
15
+
The following properties are common to all axes provided by Chart.js.
16
16
17
17
| Name | Type | Default | Description
18
18
| ---- | ---- | ------- | -----------
19
-
| `display` | `Boolean` | `true` | If set to `false`the axis is hidden from view. Overrides *gridLines.display*, *scaleLabel.display*, and *ticks.display*.
19
+
| `display` | `Boolean`/`String` | `true` | Controls the axis global visibility (visible when `true`, hidden when `false`). When `display: 'auto'`, the axis is visible only if at least one associated dataset is visible.
20
20
| `callbacks` | `Object` | | Callback functions to hook into the axis lifecycle. [more...](#callbacks)
21
21
| `weight` | `Number` | `0` | The weight used to sort the axis. Higher weights are further away from the chart area.
0 commit comments