Supported Data Types

Follow one of the links to know details of the desired data type (configuration and usage example).

Data from an external file is loaded by load() method.

Please note, data loading is asynchronous.
Therefore, you should catch the end of loading before executing any commands with data:

chart.load(url, function(){
     alert("Loading..."); 
   //any operations with data can be placed here
},datatype);

When data is already available on client-side , you should use parse() method:

chart.parse(data, datatype);