- Timestamp:
- 11/14/08 11:52:54 (8 weeks ago)
- Files:
-
- 1 modified
-
branches/1.2/dojox/charting/widget/Chart2D.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/dojox/charting/widget/Chart2D.js
r15666 r15700 120 120 resize: function(box){ 121 121 // summary: resize the widget 122 dojo.marginBox(this.domNode, box); 123 this.chart.resize(); 122 if(box.w > 0 && box.h > 0){ 123 dojo.marginBox(this.domNode, box); 124 this.chart.resize(); 125 } 124 126 } 125 127 });