Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaBeliaev committed Jul 9, 2017
1 parent bd6b656 commit f9121c7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions docs/axes/cartesian/timeseries.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The following options are provided by the timeseries scale. They are all located

## Date Formats

When providing data for the time scale, Chart.js supports all of the formats that Moment.js accepts. See [Moment.js docs](http://momentjs.com/docs/#/parsing/) for details.
When providing data for the timeseries scale, Chart.js supports all of the formats that Moment.js accepts. See [Moment.js docs](http://momentjs.com/docs/#/parsing/) for details.

## Time Units

Expand All @@ -33,7 +33,7 @@ The following time measurements are supported. The names can be passed as string
* quarter
* year

For example, to create a chart with a time scale that always displayed units per month, the following config could be used.
For example, to create a chart with a timeseries scale that always displayed units per month, the following config could be used.

```javascript
var chart = new Chart(ctx, {
Expand Down
10 changes: 5 additions & 5 deletions samples/scales/timeseries/line-point-data.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<script src="../../../dist/Chart.js"></script>
<script src="../../utils.js"></script>
<style>
canvas {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
canvas {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
</style>
</head>

Expand Down
10 changes: 5 additions & 5 deletions samples/scales/timeseries/line.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<script src="../../../dist/Chart.js"></script>
<script src="../../utils.js"></script>
<style>
canvas {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
canvas {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
</style>
</head>

Expand Down

0 comments on commit f9121c7

Please sign in to comment.