Hello
I'm trying to send a column of data from a flexgrid to MSChart to plot. But, with this code all I get is the last entry of the first column. This number is the same across the chart x-axis. So the chart has a straight line left to right.
I wanted all the values of the single column plotted. My chart has years as the x-axis and amount as the y-axis.
any help is much appreciatedCode:For iRowCount = 1 To tempview1.MSFlexGrid1.Rows - 2 For iColumnCount = 1 To 12 ' assign a FlexGrid cell's data to dCurrData dCurrData = tempview1.MSFlexGrid1.TextMatrix(iRowCount, iColumnCount) With MSChart1 .ColumnCount = 1 .Column = iColumnCount .Row = iRowCount .RowCount = tempview1.MSFlexGrid1.Rows -2 .Column = iColumnCount .Data = dCurrData .enabled = True End With Next iColumnCount Next iRowCount
Steve


Reply With Quote

Bookmarks