How to make radar graph using jQuery

Asked By 20 points N/A Posted on -
qa-featured

I want to know about creating weather radar graph using jquery. Please explain me in details regarding radar graph by jquery. Also add any link if possible where I can get some useful information about it.

SHARE
Answered By 0 points N/A #134516

How to make radar graph using jQuery

qa-featured

 

Yahoo! Weather Feed Plug-in for jquery plug-in will read the present weather for a

location using Yahoo! Weather. That plug-in  produces structured HTML with in-built CSS classes

for styling. Simple and easy  to use.

Example using the Scrollable, Circular, Navigator and Auto scroll plug-in from jQueryTools.

Script

$(document).ready(function () {

                $('#test').weatherfeed(['UKXX0085','EGXX0011','UKXX0061','CAXX0518','CHXX0049'],{},function(e) {

                                $("div.scrollable").scrollable({

                                vertical: true, 

                                size: 1

                                }).circular().navigator().autoscroll({

                                                interval: 3000

                                });

                });

});

 

Related Questions