outlabeledPie print bug

When creating a outLabeled pie it works nice in quickcharts environment but when I try to download it via QuickChart library from c# it doesn’t show labels.

Here is the json i am using:
{
“type”: “outlabeledPie”,
“data”: {
“labels”: [
“10v”,
“20v”,
“30v”
],
“datasets”: [
{
“data”: [
10,
20,
30
],
“backgroundColor”: [
#EF280F”,
#024A86”,
#E36B2C
]
}
]
},
“options”: {
“legend”: {
“position”: “bottom”,
“labels”: {
“fontSize”: 12,
“fontStyle”: “Calibri”,
“fontColor”: “#282C35
}
},
“title”: {
“display”: true,
“text”: “Pie example”,
“fontSize”: 14,
“fontFamily”: “Calibri”,
“fontColor”: “#282C35
},
“plugins”: {
“outlabels”: {
“text”: “%l %p”,
“color”: “black”,
“stretch”: 35,
“font”: {
“resizable”: true,
“minSize”: 12,
“maxSize”: 18
}
},
“legend”: false
}
}
}
Left is quickcharts and right is the downloaded image from c#
image

Note that I am hardcoding json format in the chart.Config and it works nice for quickchart.io

Hi @Txesu, see this post: Labelled pie charts not showing up - #2 by ian

Basically, you have to change the size or devicePixelRatio of the image. Outlabels disappear when they don’t have enough room.