source:
Dev/trunk/src/client/dojox/charting/plot2d/ClusteredBars.js
Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago | |
---|---|
File size: 426 bytes |
Rev | Line | |
---|---|---|
[483] | 1 | define(["dojo/_base/declare", "./Bars", "./common"], |
2 | function(declare, Bars, dc){ | |
3 | ||
4 | return declare("dojox.charting.plot2d.ClusteredBars", Bars, { | |
5 | // summary: | |
6 | // A plot representing grouped or clustered bars (horizontal bars) | |
7 | getBarProperties: function(){ | |
8 | var f = dc.calculateBarSize(this._vScaler.bounds.scale, this.opt, this.series.length); | |
9 | return {gap: f.gap, height: f.size, thickness: f.size}; | |
10 | } | |
11 | }); | |
12 | }); |
Note: See TracBrowser
for help on using the repository browser.