/* Copyright (c) 2004-2006, The Dojo Foundation All Rights Reserved. Licensed under the Academic Free License version 2.1 or above OR the modified BSD license. For more information on Dojo licensing, see: http://dojotoolkit.org/community/licensing.shtml */ dojo.provide("dojo.charting.Chart"); dojo.require("dojo.lang.common"); dojo.require("dojo.charting.PlotArea"); dojo.charting.Chart=function(_1,_2,_3){ this.node=_1||null; this.title=_2||"Chart"; this.description=_3||""; this.plotAreas=[]; }; dojo.extend(dojo.charting.Chart,{addPlotArea:function(_4,_5){ if(_4.x!=null&&_4.left==null){ _4.left=_4.x; } if(_4.y!=null&&_4.top==null){ _4.top=_4.y; } this.plotAreas.push(_4); if(_5){ this.render(); } },onInitialize:function(_6){ },onRender:function(_7){ },onDestroy:function(_8){ },initialize:function(){ if(!this.node){ dojo.raise("dojo.charting.Chart.initialize: there must be a root node defined for the Chart."); } this.destroy(); this.render(); this.onInitialize(this); },render:function(){ if(this.node.style.position!="absolute"){ this.node.style.position="relative"; } for(var i=0;i0){ this.node.removeChild(this.node.childNodes[0]); } }});