source: Dev/trunk/src/client/dojox/charting/plot2d/MarkersOnly.js

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

Added Dojo 1.9.3 release.

File size: 409 bytes
Line 
1define(["dojo/_base/declare", "./Default"], function(declare, Default){
2
3        return declare("dojox.charting.plot2d.MarkersOnly", Default, {
4                // summary:
5                //              A convenience object to draw only markers (like a scatter but not quite).
6                constructor: function(){
7                        // summary:
8                        //              Set up our default plot to only have markers and no lines.
9                        this.opt.lines   = false;
10                        this.opt.markers = true;
11                }
12        });
13});
Note: See TracBrowser for help on using the repository browser.