Group
Extension

Matches 2

HTML-InfoVis ( A/AD/ADAMK/HTML-InfoVis-0.03.tar.gz, ADAMK, 2012; MetaCPAN )
HTML-InfoVis/lib/HTML/InfoVis.pm ( view source; MetaCPAN )
e only available class is
L<HTML::InfoVis::Graph>, which assists in generation InfoVis-compatible
JSON graph dumps.

=cut

use 5.006;
use strict;
use HTML::InfoVis::Graph ();

our $VERSION = '0.03';

HTML-InfoVis ( A/AD/ADAMK/HTML-InfoVis-0.03.tar.gz, ADAMK, 2012; MetaCPAN )
HTML-InfoVis/lib/HTML/InfoVis/Graph.pm ( view source; MetaCPAN )
rate a JSON structure suitable for loadJSON classes

=head1 SYNOPSIS

  use HTML::InfoVis;
  
  my $graph = HTML::InfoVis::Graph->new;
  $graph->add_edge( 'foo' => 'bar' );
  
  print "var json = " . 
$graph->as_json . "\n";

=head1 DESCRIPTION

HTML::InfoVis::Graph is used to generate a JSON structure suitable for loading
by any InfoVis Javascript object that has the C<loadJSON> method.

This is a
raph, and a single method
for generating an anonymous JSON structure representing the graph.

=head1 METHODS

=cut

use 5.006;
use strict;
use JSON  2.16 ();
use Graph 0.85 ();

our $VERSION = '0.03';

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.