In the sample code of placeholder parser, it doesn't have any tooltips and throws an error in console.
TypeError: data.percentage.toFixed is not a function
After a research, I found it caused by this line.
Changed to (+data.percentage).toFixed(2) can solve this error.
In the sample code of placeholder parser, it doesn't have any tooltips and throws an error in console.
TypeError: data.percentage.toFixed is not a function
After a research, I found it caused by this line. Changed to(+data.percentage).toFixed(2)
can solve this error.