I'm having an issue with the display of a multi-series bar chart. I want there to be only one "group" or category plotted as indicitive in my example XML below, with two bars stacked on top of each other. When I use the following XML, everything works correctly, but the '2006' series bar is not plotted... any ideas?
--------------------------------------------
<chart caption='Costs / Square Foot' >
<categories>
<category label='Buildings' />
<category label='' />
</categories>
<dataset seriesName='2005' color='33FF66'>
<set value='12' />
</dataset>
<dataset seriesName='2006' color='FF6600'>
<set value='11' />
</dataset>
</chart>