chartjs/Chart.js

Specifiying a fixedStepSize for ticks should set autoSkip to false

Open

#4,048 创建于 2017年3月20日

在 GitHub 查看
 (0 评论) (0 反应) (0 负责人)JavaScript (11,951 fork)batch import
help wantedtype: enhancement

仓库指标

Star
 (67,416 star)
PR 合并指标
 (平均合并 190天 2小时) (30 天内合并 1 个 PR)

描述

Expected Behavior

I was expecting ['Options']['scales']['xAxes'][0]['ticks']['fixedStepSize'] = 1;` to give me a step size of 1.

Current Behavior

I got the step size that chart.js had worked out (2: 40,42,44, etc.). I had to specify ['Options']['scales']['xAxes'][0]['ticks']['autoSkip'] = false; to get a step size of 1.

Possible Solution

Update the docs to mention that this needs to be done. (Easiest) Or, in the code, set autoSkip to false if you are specifying a step size

Environment

  • Chart.js version: 2.5

贡献者指南