Tengo la intención de reducir la altura de línea de dos textos en el centro del gráfico de anillos. Además, quiero reducir el tamaño de fuente del segundo texto. Estoy usando Chart.js versión 2.9.4.
Esto es parte del código del gráfico de anillos.
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, } },