source: Dev/trunk/src/client/dojox/charting/plot2d/Areas.js @ 524

Last change on this file since 524 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 377 bytes
Line 
1define(["dojo/_base/declare", "./Default"],
2  function(declare, Default){
3
4        return declare("dojox.charting.plot2d.Areas", Default, {
5                // summary:
6                //              Represents an area chart.  See dojox/charting/plot2d/Default for details.
7                constructor: function(){
8                        // summary:
9                        //              The constructor for an Area chart.
10                        this.opt.lines = true;
11                        this.opt.areas = true;
12                }
13        });
14});
Note: See TracBrowser for help on using the repository browser.