I’m using QuickChart with Ruby on Rails and, according to the Chart.js docs I can find, this should produce an outlabeledDoughnut chart that displays the actual raw values rather than the values as a percentage (like you’d get with “%p”):
outlabels: {
text: "%l %v",
color: "black",
stretch: 25,
font: {
resizable: true,
minSize: 12,
maxSize: 18
}
}
}
type or paste code here
But this isn’t working at all. “%l” on its own works fine, as does “%l %p”, but adding %v makes the outlabels not show up at all and there’s no error message. Has anyone else encountered this problem?