Files
rappaurio-sae501_502/app/node_modules/cejs/interact/chart.js
2023-09-25 13:27:24 +02:00

53 lines
1.5 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.


/**
* @name CeL function for charts
* @fileoverview
* 本檔案包含了 chart 用的 functions。
* @since
* @example
* <code>
* CeL.run('interact.chart',function(){
* // ..
* });
* </code>
* @see
* <a href="http://code.google.com/apis/chart/" accessdate="2011/10/22 9:56">Google Chart Tools - Google Code</a>
*/
'use strict';
if (typeof CeL === 'function')
CeL.run(
{
name:'interact.chart',
code : function(library_namespace) {
/**
* null module constructor
* @class chart 處理的 functions
*/
var _// JSDT:_module_
= function() {
// null module constructor
};
/**
* for JSDT: 有 prototype 才會將之當作 Class
*/
_// JSDT:_module_
.prototype = {
};
return (
_// JSDT:_module_
);
}
});