Lines Matching refs:AmCharts

38 AmCharts.translations.dataLoader = {};
43 AmCharts.addInitHandler( function( chart ) {
220 AmCharts.loadFile( url, options, function( response ) {
225 …raiseError( AmCharts.__( 'Error loading the file', chart.language ) + ': ' + url, false, options );
242 holder[ providerKey ] = AmCharts.parseJSON( response );
246 …raiseError( AmCharts.__( 'Error parsing JSON file', chart.language ) + ': ' + l.url, false, option…
258 holder[ providerKey ] = AmCharts.parseCSV( response, options );
262 …raiseError( AmCharts.__( 'Error parsing CSV file', chart.language ) + ': ' + l.url, false, options…
274 …raiseError( AmCharts.__( 'Unsupported data format', chart.language ) + ': ' + options.format, fals…
375 …raiseError( AmCharts.__( 'Error loading file', chart.language ) + ': ' + options.url, false, optio…
437 msg = AmCharts.__( 'Loading data...', chart.language );
497 if ( undefined === AmCharts.__ ) {
498 AmCharts.__ = function( msg, language ) {
499 … undefined !== language && undefined !== AmCharts.translations.dataLoader[ language ] && undefined…
500 return AmCharts.translations.dataLoader[ language ][ msg ];
509 AmCharts.loadFile = function( url, options, handler ) {
529 request.open( 'GET', options.timestamp ? AmCharts.timestampUrl( url ) : url, options.async );
573 AmCharts.parseJSON = function( response ) {
587 AmCharts.parseCSV = function( response, options ) {
590 var data = AmCharts.CSVToArray( response, options.delimiter );
642 AmCharts.CSVToArray = function( strData, strDelimiter ) {
730 AmCharts.timestampUrl = function( url ) {