1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
<asp:Chart runat="server" ID="MsChart" Width="900px" Height="600px" Visible="false">
<Legends>
<asp:Legend Name="D">
<Position Auto="false" Y="100" Width="10" Height="5" X="80" />
</asp:Legend>
<asp:Legend Name="C">
<Position Auto="false" Y="100" Width="10" Height="5" X="60" />
</asp:Legend>
<asp:Legend Name="B">
<Position Auto="false" Y="100" Width="10" Height="5" X="40" />
</asp:Legend>
<asp:Legend Name="A">
<Position Auto="false" Y="100" Width="10" Height="5" X="20" />
</asp:Legend>
</Legends>
<Series>
<asp:Series XValueType="Double" IsValueShownAsLabel="false" Legend="A" LegendText="A"
ChartType="StackedColumn100" Color="Lime" Name="A" BorderColor="180, 26, 59, 105">
</asp:Series>
<asp:Series XValueType="Double" IsValueShownAsLabel="false" Legend="B" LegendText="B"
ChartType="StackedColumn100" Color="Yellow" Name="B" BorderColor="180, 26, 59, 105">
</asp:Series>
<asp:Series XValueType="Double" IsValueShownAsLabel="false" Legend="C" LegendText="C"
ChartType="StackedColumn100" Color="#ff9900" Name="C" BorderColor="180, 26, 59, 105">
</asp:Series>
<asp:Series XValueType="Double" IsValueShownAsLabel="false" Legend="D" LegendText="D"
ChartType="StackedColumn100" Color="Red" Name="D" BorderColor="180, 26, 59, 105">
</asp:Series>
</Series>
<ChartAreas>
<asp:ChartArea Name="ChartArea1" BackSecondaryColor="White" BackColor="#EFE6F7" ShadowColor="DarkRed"
BackGradientStyle="TopBottom">
</asp:ChartArea>
</ChartAreas> |
Partager