source: Dev/trunk/src/client/dojox/charting/plot2d/ClusteredColumns.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: 438 bytes
Line 
1define(["dojo/_base/declare", "./Columns", "./common"],
2        function(declare, Columns, dc){
3
4        return declare("dojox.charting.plot2d.ClusteredColumns", Columns, {
5                // summary:
6                //              A plot representing grouped or clustered columns (vertical bars)
7                getBarProperties: function(){
8                        var f = dc.calculateBarSize(this._hScaler.bounds.scale, this.opt, this.series.length);
9                        return {gap: f.gap, width: f.size, thickness: f.size};
10                }
11        });
12});
Note: See TracBrowser for help on using the repository browser.