]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
stepSize defined twice. renaming the first to fixedStepSize
authorMichael Oberwasserlechner <michaelowl@gmail.com>
Sat, 2 Jul 2016 11:55:53 +0000 (13:55 +0200)
committerMichael Oberwasserlechner <michaelowl@gmail.com>
Sat, 2 Jul 2016 11:55:53 +0000 (13:55 +0200)
docs/02-Scales.md

index b77b42f598cfc8d189690314d2bc5cd7e0cff747..44f56ad6bb726603cc9cdee7db14f86b19e08b06 100644 (file)
@@ -141,7 +141,7 @@ beginAtZero | Boolean | - | if true, scale will inclulde 0 if it is not already
 min | Number | - | User defined minimum number for the scale, overrides minimum value from data.
 max | Number | - | User defined maximum number for the scale, overrides maximum value from data.
 maxTicksLimit | Number | 11 | Maximum number of ticks and gridlines to show. If not defined, it will limit to 11 ticks but will show all gridlines.
-stepSize | Number | - | User defined fixed step size for the scale. If set, the scale ticks will be enumerated by multiple of stepSize, having one tick per increment. If not set, the ticks are labeled automatically using the nice numbers algorithm.
+fixedStepSize | Number | - | User defined fixed step size for the scale. If set, the scale ticks will be enumerated by multiple of stepSize, having one tick per increment. If not set, the ticks are labeled automatically using the nice numbers algorithm.
 stepSize | Number | - | if defined, it can be used along with the min and the max to give a custom number of steps. See the example below.
 suggestedMax | Number | - | User defined maximum number for the scale, overrides maximum value *except for if* it is lower than the maximum value.
 suggestedMin | Number | - | User defined minimum number for the scale, overrides minimum value *except for if* it is higher than the minimum value.