Chartjs-How to execute a JavaScript function with ChartJS and FreeMarker?

0👍

Remove that "${ and }", so that the function will be called in the browser. FreeMarker statements (like ${...}) are resolved on the server, which is too early (there’s no JavaScript running there).

Leave a comment