Title
更新日: 2018-09-03
チャートの上部に表示するタイトルを定義します。
タイトル設定
タイトル設定は名前空間options.title
に渡されます。 グローバルオプションはChart.defaults.global.title
で定義されています。
名称 | type | 初期値 | 説明 |
---|---|---|---|
display | boolean | false | タイトルを表示するかどうか。 |
position | string | top | タイトルの表示位置を指定します。 詳しくは表示位置を確認してください。 |
fontSize | number | 12 | フォントサイズ。 |
fontFamily | string | "'Helvetica Neue', 'Helvetica', 'Arial', sans-serif" | タイトルのフォント。 |
fontColor | color | #666 | 文字色。 |
fontStyle | string | bold | フォントスタイル。 |
padding | number | 10 | タイトル上下のスペースを追加します。 |
lineHeight | number/string | 1.2 | 行の高さ。 詳しくはMDNを参照してください。 |
text | String/String[] | '' | 表示する文字。 配列を指定した場合、複数行で表示されます。 |
position
タイトルの表示位置を指定します。以下を指定することができます。
- top
- left
- bottom
- right
例
以下は、'Custom Chart Title'というタイトルを表示する例です。
var chart = new Chart(ctx, {
type: 'line',
data: data,
options: {
title: {
display: true,
text: 'Custom Chart Title'
}
}
})
デモ
タイトルをチャートの下部に、改行を入れて表示しています。
JavaScript
var ctx = document.getElementById('myChart').getContext('2d');
new Chart(ctx, {
type: 'line',
data: {
labels: ["January", "February", "March", "April", "May", "June", "July"],
datasets:[{
type: 'line',
label: "A",
data: [65, 59, 80, 81, 56, 55, 40],
backgroundColor: "rgba(54, 162, 235, 0.2)",
borderColor: "rgb(54, 162, 235)",
borderWidth: 1
}]
},
options: {
title: {
display: true,
position: 'bottom',
fontColor: '#333',
text: ['タイトル', 'を', '改行して', '表示します。'],
}
}
});
HTML
<canvas id="myChart"></canvas>
© 2013 Chart.js is available under the MIT license
このコンテンツはChart.jsドキュメントを翻訳/改変したものです。