0👍
✅
The problem is that chartJS is trying to display DYNAMIC Animated Data that start from the bottom the top, however when generating a PDF it takes the first instant resulting in a frozen DATA set at the bottom of the chart… : In ChartJS you will have to set Options: animation: duration: 0 like this:
options: {
legend: { display: false },
animation: {
duration: 0
}
Source:stackexchange.com