rubenvanassche / Programming-Project-Databases

A World championship statistics website
coachcenter.be
GNU General Public License v3.0
1 stars 1 forks source link

Search good javascript graphics library #41

Closed rubenvanassche closed 10 years ago

rubenvanassche commented 10 years ago
tomroels commented 10 years ago

http://raphaeljs.com/

JakobStruye commented 10 years ago

Came across https://developers.google.com/chart/interactive/docs/gallery while working on the GeoCharts map. Should do the trick, and if it's similar to GeoCharts, it's relatively easy to use. Haven't looked into it too much though.

STOWouters commented 10 years ago

Came across https://developers.google.com/chart/interactive/docs/gallery while working on the GeoCharts map.

Whoa, pretty cool, they even have a sorting table. But I'm wondering if we have still enough time for this?

JakobStruye commented 10 years ago

Visualisation of data is mandatory, either we do this or we fail the project. I'm already on it though, it's not all that difficult. I should have something decent by tonight.

JakobStruye commented 10 years ago

Added a first version of the visualisation in 26387b093470003db0730a65a1c0fef7fea239c0 I couldn't figure out how to get it to work within an ajax tab, so atm it's only accessible through the url team/id/graphs

I guess just adding the ability for the user to tweak the second graph (different kind of graph, cards instead of goals, total number of goals/cards instead of average, ...) would be enough to fulfill the requirements (assignment says the user has to be able to modify the graphs).

JakobStruye commented 10 years ago

The Team graphs are done. One graph is a pie chart showing win/loss/tie percentages of the team. The other graph is a column chart showing the average goals and/or cards per match for every year we have data on. The user can select any combination of goals, yellow cards and red cards to be displayed. This feature had to be 'hacked' in because the API didn't provide this (a feature like this one is mandatory). As a result it is impossible to give columns a fixed colour independent of the combination of columns selected by the user (e.g. always showing yellow cards as a yellow column is impossible).

I still need to make a graph for the system's prediction, once prediction is finished.

The graphs still show in a separate window, they do not work with Ajax tabs yet.

JakobStruye commented 10 years ago

All done!