P
pascal
Hi.
i looking for away to add new data in existing Series in chart for example:
line chart of temperture values that updates on going on the chart without
redrawing the chart each.
se = wc.SeriesCollection.Add(0);
se.SetData(Microsoft.Office.Interop.Owc11.ChartDimensionsEnum.chDimValues,Convert.ToInt32(Microsoft.Office.Interop.Owc11.ChartSpecialDataSourcesEnum.chDataLiteral), values);
Can i add new data to the end of the Series (se object)?
pascal
i looking for away to add new data in existing Series in chart for example:
line chart of temperture values that updates on going on the chart without
redrawing the chart each.
se = wc.SeriesCollection.Add(0);
se.SetData(Microsoft.Office.Interop.Owc11.ChartDimensionsEnum.chDimValues,Convert.ToInt32(Microsoft.Office.Interop.Owc11.ChartSpecialDataSourcesEnum.chDataLiteral), values);
Can i add new data to the end of the Series (se object)?
pascal