Bar chart to PNG
The most common case: a Chart.js bar config rendered to a static PNG you can drop into an email or report.
{
"type": "bar",
"width": 600,
"height": 320,
"format": "png",
"data": {
"labels": ["Q1", "Q2", "Q3", "Q4"],
"datasets": [{ "label": "Revenue", "data": [12000, 15000, 18000, 16000] }]
}
}