forループで指定された値を取得し、それらをExcelから取得するセルの範囲として使用しようとしています。ここで何が問題になっていますか?
List<string> str = new List<string>();
// The follwing increments by 4, and starts at 25
for (int i = 25; i <= lastRow; i += 4) // += means a + b
{
str = ws.Range["B"+i].Value;
}
..。
SeriesCollection seriesCollection_mySeries = xlChart.SeriesCollection();
Series series1 = seriesCollection_mySeries.NewSeries();
series1.Values = str
;