visualization

opensanta's picture

jQuery Visualize Plugin: Accessible Charts & Graphs from Table Elements using HTML 5 Canvas

Visualize is a Views style plug-in for implementing the jQuery Visualize charting tool.

jQuery Visualize provides accessible charts providing textual information to non-visual users.
It uses a technique with JavaScript to scrape data from an HTML table and generate charts using the HTML 5 Canvas element.

Try out a demo: http://lakeandweb.com/visualize/

Login to post comments

Intranet Web Developer @ Venice/Lost Angeles CA | luma pictures

Employment type: 
Full time
Telecommute: 
Not allowed

RESPONSIBILITIES:
- clean up, optimize and expand an advanced PHP-based project tracking system
- develop both front end and back end

QUALIFICATIONS:
- 3 years experience developing web applications using LAMP (Linux/Unix, Apache, MySQL, and PHP).
- advanced knowledge of javascript frameworks such as jquery or mootools
- understand sound database architecture principles and optimization techniques
- have demonstrated graphic design / layout / aesthetic sensibilities
- expertise in usability, visualization and navigation of massive amounts of data

Read more

Drupal + Flex + Flare = Coolness

Hey, I've set up a data pipe from Drupal to Flex/Flare using jQuery. Its as easy as this:

  1. IN DRUPAL TEMPLATE.PHP
    function phptemplate_views_view_list_{viewname}($view, $nodes, $type) {
    foreach ($nodes as $i => $nid) {
    $node = node_load($nid->nid);
    $output[]= json_encode($node);
    }
    return 'var videos=['.implode(',',$output).']';
    }

  2. IN THE HTML-TEMPLATE

<

script type="text/javascript">
function getData(){
$.getScript("http://example.com/view", function(){
/*$(videos).each(function(i){

1 comment · Read more
snufkin's picture

Visualization perspectives

Just stumbled upon this post on Mashable: http://mashable.com/2007/05/15/16-awesome-data-visualization-tools/

Several good ideas what could be implemented in Drupal on the field of visualization. With open formats like SVG there is no stopping us :)

1 comment
alex_b's picture

If somebody's up to create a stock module

with lots of graphs - I would like to know which graphing library you are planning to use and how you think you will interface it.

-alex

2 comments
Aron Novak's picture

Visualize a tree

Currently my problem is to find a good algorithm to visualize a tree. The problem is:

  • determine each point's coordinates - find a layout
  • draw the layout

This tree is not weighted, directed one - breadth-first search output for example. The second point is very obvious. The first one is not easy, especially for very big trees (~3000 points)

2 comments
Syndicate content