/
githubmirror
/
Chart.js
Обзор
Документация
Войти
/
githubmirror
/
Chart.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixtures/core.scale/title/default.js
73 строки
1 KB
Evert Timberg
Rename scale `gridLines` options to be clearer (#8628)
13 мар 2021, 20:49
Не верифицирован
13 мар 2021, 20:49
6ac89cb
Код
Авторство
О чём код?
module.exports = { config: { type: 'line', options: { events: [], scales: { top: { type: 'linear', position: 'top', ticks: { display: false }, grid: { display: false }, title: { display: true, text: 'top' } }, left: { type: 'linear', position: 'left', ticks: { display: false }, grid: { display: false }, title: { display: true, text: 'left' } }, bottom: { type: 'linear', position: 'bottom', ticks: { display: false }, grid: { display: false }, title: { display: true, text: 'bottom' } }, right: { type: 'linear', position: 'right', ticks: { display: false }, grid: { display: false }, title: { display: true, text: 'right' } }, } } }, options: { spriteText: true, canvas: { height: 256, width: 256 }, } };