Line | |
---|
1 | define(["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.