Click here to Skip to main content
15,897,718 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi everyone...
now i am working in a Bar chart to Display the Availability record in Chart Manner.
i am also trying in Some Examples in Internet..but not getting my result..
here i have some problem on binding values to x axis and Y axis in the Bar chart..

<asp:Chart ID="Chart1" runat="server" Height="250px" Width="250px" >
    <Series>
        <asp:Series Name="Series1" ChartArea="ChartArea1" YValuesPerPoint="6" ChartType="Column">

    <Points>
        <asp:DataPoint AxisLabel="January" YValues="100" />
        <asp:DataPoint AxisLabel="February" YValues="150" />

        <asp:DataPoint AxisLabel="March" YValues="70" />
        <asp:DataPoint AxisLabel="April" YValues="50" />

    </Points>
        </asp:Series>

    </Series>
    <ChartAreas>
        <asp:ChartArea Name="ChartArea1">

        <Area3DStyle Enable3D="true" LightStyle="Simplistic" Rotation="20" WallWidth="5"/>


        </asp:ChartArea>
    </ChartAreas>
</asp:Chart>

this is front page coding...
here i need pass a Value from Database and display in my Front page Design...?
i hope you all are Understand My question..
Thanks in Advance..
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900