Hello,
i've a RadChart with an SQLDataSource.
The DataSource has Columns like: Hour and Date.
I created the YAXis wiht Hours 0-24 with the Wizzard and Bound the Hour Column to Y-Axix for Series1.
Created XAxis in the codebehind Date(example: 1/1/2008 - 1/10/2008)
But i cant Bound the Date-Column to X-Axis becouse the column does not appear in the Wizzard.
Any solutions for this?
Many Thanks
i've a RadChart with an SQLDataSource.
The DataSource has Columns like: Hour and Date.
I created the YAXis wiht Hours 0-24 with the Wizzard and Bound the Hour Column to Y-Axix for Series1.
Created XAxis in the codebehind Date(example: 1/1/2008 - 1/10/2008)
double startTime = DateTime.Parse(Request.QueryString["stichtag"]).AddDays(-1).ToOADate();
double endTime = DateTime.Parse(Request.QueryString["stichtagbis"]).AddDays(1).ToOADate();
RadChart1.PlotArea.XAxis.AddRange(startTime, endTime, 1);
But i cant Bound the Date-Column to X-Axis becouse the column does not appear in the Wizzard.
Any solutions for this?
Many Thanks