I have got the mission do develop "Charts Generator" which will be able to generate .html files with the specific (pie, column etc.) chart and save it on the server.
The main challenge is to find JS framework which will be able satisfy the up mentioned needs. Frameworks like google-charts or angular-chart are creating their charts on-the-fly (e.g. when the page loads) but in my case it is not what I need. Let me explain it with an specific user story.
For example the end-user wants to print his month bill (with column chart inside). He receives the generated .html file, right-mouse clicks it and selects to print it. To make sure that the chart will be printed correctly, it has to already to be in the .html file (e.g. presented as img element).
Any suggestion for frameworks that could help me?