I am using Infragistics Chart control in my Web Application. I have a scenario wherein I have to show multiple line graphs in a single chart and also another chart which contains an AreaGraph. I am adding points into multiple series and add all the series to my chart. After I do the DataBind I see the chart containing all the lines or areas but it shows the data for series which has minimum number of points. Following code, in which I am trying to draw an AreaChart should make the problem clearer. I have put the necessary comments to understand the code better.
}
The chart does not currently support series with an uneven number of points to be displayed on the same axis. You can request this feature here: http://devcenter.infragistics.com/protected/requestfeature.aspx
for the time being, your options are either:
1: add "empty" points to the series with fewer than the required number of points
2: use a composite chart and overlay multiple ChartAreas on top of each other.