# レーダーチャートの最大値固定

**URL:** https://community.cybozu.dev/t/topic/7384
**Category:** kintone 開発相談
**Created:** [2021 年 2 月 15 日午前 11:07 UTC](https://community.cybozu.dev/t/topic/7384 "2021-02-15T11:07:31Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Legacy\_Account2423](https://avatars.discourse-cdn.com/v4/letter/l/b38774/32.png) [@Legacy\_Account2423](https://community.cybozu.dev/u/Legacy_Account2423)
#### Post date: [2021 年 2 月 15 日午前 11:07 UTC](https://community.cybozu.dev/t/topic/7384/1 "2021-02-15T11:07:31Z")

</div>

表示される最大値を5に固定して一目盛りを0.1にしたいと考えています。

オプションのところで

// Chart.js のオプションを設定する  
var options = {  
scaleShowLine: true,  
angleShowLineOut: true,  
scaleShowLabels: true,  
scaleBeginAtZero: true,  
angleLineColor: “rgba(0,0,0,.1)”,  
angleLineWidth: 1,  
pointLabelFontFamily: “‘Arial’”,  
pointLabelFontStyle: “normal”,  
pointLabelFontSize: 9,  
pointLabelFontColor: “#666”,  
pointDot: true,  
pointDotRadius: 5,  
pointDotStrokeWidth: 1,  
pointHitDetectionRadius: 20,  
datasetStroke: true,  
datasetStrokeWidth: 3,  
datasetFill: true,  
responsive: true,  
**suggestedMax: 5,**  
**suggestedMin:0,**  
**stepSize:0.1**  
};

と入れてみたのですがうまくいきませんでした

グラフは表示されています。

すいませんが教えてください

よろしくお願いします
