MSChart StackedBar100 and also showing actual series numbers.

Soldato
Joined
8 Mar 2005
Posts
3,676
Location
London, UK
Pretty much the subject wraps it up;
I have a StackedBar100 graph and it provides the visual indicator I need but I've yet to suss out how to also show each series actual value.

For instance;
Code:
<asp:Series Name="Used in last 15 days." XValueMember="SomeGroupName"
                YValueMembers="Green" ChartType="StackedBar100" Color="192, 255, 192" IsValueShownAsLabel="True"  
                Legend="Legend1">
            </asp:Series>
Simply shows the percentage value, which is to be expected since it is a 100 graph. I suspect I'm being very silly! Or perhaps it can't be done? Surely not.

Any ideas?
Cheers Paul.

EDIT - Label="#VAL" in each series!

Actually that provides a value for each series within the stack. I would have liked a single value for each stack (sum of each series).
 
Last edited:
Back
Top Bottom