I have an asp.net 4.0 chart generated with DataBindCrossTable from LINQ db query. That creates chart with multiple series (27 in my case).

Is there a way to change chartType on all those auto generated series without iteration over them ? This is what I'm doing now:

For Each series In Chart1.Series
   series.ChartType = DataVisualization.Charting.SeriesChartType.StackedBar
   series.BorderWidth = 2
Next

Thanx

link|improve this question
feedback

1 Answer

No I don't think so. What is wrong with iterating over them? It won't cost hardly anything to do..

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.