towerbargraph element

Type:Graphs
Attributes: bar-depth  •  bar-width  •  display-barvalues  •  round-bars  •  axes-color  •  floor-border-color  •  min-y  •  xaxis-formatter-density  •  xaxis-formatter  •  xaxis-label  •  xaxis  •  yaxis-formatter  •  yaxis-label  •  yaxis  •  ywall-border-color  •  ywall-grid  •  zaxis  •  zwall-border-color  •  box-color  •  default-colors  •  display-key  •  key  •  keybox-border-color  •  light-level  •  light-vector  •  xrotation  •  yrotation  •  zrotation  •  align  •  alt  •  background-color  •  background-image-dpi  •  background-image-position  •  background-image  •  background-pdf  •  border-color  •  border-style  •  border-width  •  border  •  clear  •  corner-radius  •  display  •  float  •  font-size  •  height  •  href  •  left  •  line-cap  •  line-height  •  line-join  •  margin  •  onmouseover  •  overflow  •  padding  •  page-break-after  •  page-break-inside  •  position  •  rotate  •  size  •  title  •  top  •  vertical-align  •  visibility  •  white-space  •  width  •  class  •  colorspace  •  direction  •  id  •  lang  •  pdf-tag-background-color  •  pdf-tag-border-color  •  pdf-tag-border-style  •  pdf-tag-border-thickness  •  pdf-tag-color  •  pdf-tag-list-numbering  •  pdf-tag-placement  •  pdf-tag-table-colspan  •  pdf-tag-table-headers  •  pdf-tag-table-rowspan  •  pdf-tag-table-scope  •  pdf-tag-table-summary  •  pdf-tag-text-align  •  pdf-tag-type
See:bargraph depthbargraph gdata

Draw a towerbargraph into the document. In a towerbargraph the bars are "stacked" on top of eachother, which makes this type of graph useful for displaying cumulative data.

The gdata elements used to specify the data must specify the name2 attribute, which is the name on the "second axis". This is effectively the name of the component of the bar, and the value is usually displayed in a seperate key.

Like the other graphs, the width and height attributes must be set but all other attributes are optional.

This draws a simple Tower Bargraph with two bars (2000 and 2001), each with four components.

<towerbargraph width="100" height="100">
  <gdata name="2000" name2="Q1" value="12"/>
  <gdata name="2000" name2="Q2" value="5"/>
  <gdata name="2000" name2="Q3" value="7"/>
  <gdata name="2000" name2="Q4" value="3"/>
  <gdata name="2001" name2="Q1" value="3"/>
  <gdata name="2001" name2="Q2" value="1"/>
  <gdata name="2001" name2="Q3" value="4"/>
  <gdata name="2001" name2="Q4" value="9"/>
</towerbargraph>