how to set ChartType to timeline System.Web.UI.DataVisualization.Charting.SeriesChartType. is this relevant?
one thing more i need to display on my chart image, the diff from start and end value...something like POINTS

link|improve this question

77% accept rate
also i want to display my timeLine horizontally i.e along x-axis – roastedProgram Nov 29 '11 at 7:24
such that X-axis hold two values say startDate and endDate</br>and Y-axis hold single Value say Names – roastedProgram Nov 29 '11 at 7:45
feedback

1 Answer

You can use the following code for setting a timeline chart:

Series serie = new Series("timeline");
serie.ChartType = SeriesChartType.Line;
serie..XValueType = ChartValueType.DateTime;
Chart.Series.Add(series);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.