Click here to Skip to main content
15,913,326 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I have a datereader with two fields like column1 as hours=5,6,7,8,9,10,11,12,13,.......,23. column2 as Count=10,20,0,40,.... and i am binding to chartcontrol

X-axis =hours

y-axis=count should be display.

I have written code like: Chart1.Series["Series1"].Points.DataBind(dr, "Hour Of Day", "Total", "Tooltip=Hour Of Day, Label=Total");

By this i am displaying count on Y-axis in vertical but X-axis is not displaying as 5,6,7,8,9,10,11,12,13,.......,23 it is showing like 00:00,00:00,00:00....

so should i change.. to display in correct way like x-axis 5,6,7,8,..... datareader values.
Posted

See the Microsoft MSChart samples with code...It would be useful for you.
 
Share this answer
 
If you want it to appear like a value over time graph, you could use DateTime values for the xaxis. Otherwise if you just want to use hours, make sure the datatype of the xaxis is not DateTime.
 
Share this answer
 

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