Reputation: 5464
I want to implement a pentagonal shaped chart according to my historical data saved in database in PHP. In fact I want to use it in CakePHP. Need yours help either by providing any chart api link or any library available online. Thanks in advance.
Upvotes: 0
Views: 1263
Reputation: 418
You can do this easily (or advanced) with JPGraph. The library is free for non-commercial, open-source or educational use. An example on how to setup a radar graph with it can be found here.
Upvotes: 1
Reputation: 13257
These are called radar charts, not pentagonal charts.
You can use this Javascript library: http://www.amcharts.com/javascript/radar-chart/
Or use the pChart PHP library: http://pchart.sourceforge.net/documentation.php?topic=exemple8
Upvotes: 3