I am developing a banking application based on very old technologies, such as Java 1.4
, presented on Internet Explorer 5
browser.
I have to present some data in the form of a pie chart. The problem is that is really hard to find a solution with such old technologies.
I tried to use Google Chart
, but we have some licence issues and, anyway, it does not work on Internet Explorer 5.
I have tried to find some javascript-based solutions using some libraries and I came up founding this so-called donut.js
on github: https://github.com/finom/donut.js/tree/master
; also this library seems not to work properly because it does not allow to present the percentage (or any kind of written information) inside the "slice" of the pie.
On the back-end side (Java 1.4) I found a library called JOpenChart
that seems to be a good alternative.
Can you suggest any other option, either on the front-end side and on the back-end side? Regarding the front-end side I have some proxy issues, so I need a stand-alone self-contained library.
Thanks in advance, Francesco