#javascript #html #chart.js
#язык JavaScript #HTML #chart.js
Вопрос:
Я намерен уменьшить высоту строки двух текстов в центре диаграммы пончиков. Кроме того, я хочу уменьшить размер шрифта второго текста. Я использую Chart.js версия 2.9.4.
Это часть кода диаграммы пончиков.
cutoutPercentage: 80, maintainAspectRatio: false, elements: { center: { // the longest text that could appear in the center maxText: '100%', text: total_vuln, text1: 'Total', fontColor: '#4b69a7', // fontFamily: "'Roboto'", // fontStyle: 'normal', fontSize: 20, // if a fontSize is NOT specified, we will scale (within the below limits) maxText to take up the maximum space in the center // if these are not specified either, we default to 1 and 256 minFontSize: 1, maxFontSize: 256, } },