私が見ている名前空間はSystem.Windows.Forms.DataVisualization.Charting
.NET Framework 3.5 にあります。
Chart
名前付きを構築し、そのチャートに呼び出されchart1
たを追加しました。Series
mySeries
デザイナーのそのシリーズのデータ セクション内には、次のものがあります。
IsXValueIndexed --> False
Name --> mySeries
Points --> (Collection)
XValueType --> DateTime
YValuesPerPoint --> 1
YValueType --> Int32
このようにシリーズに sを追加しようとするDataPoint
と、適切なタイプの x 値と y 値でそれらを追加できないようです:
public void InitializeChart()
{
Series theSeries = chart1.Series["mySeries"];
// MyData is of type List<MyDatum> and MyDatum has two members --
// one of type DateTime and another of type int
foreach (MyDatum datum in MyData)
{
// I'd like to construct a DataPoint with the appropriate types,
// but the compiler wants me to supply doubles to dp
DataPoint dp = new DataPoint(mySeries);
dp.XValue = datum.TimeStamp;
dp.YValue = datum.MyInteger;
radiosConnectedSeries.Points.Add(dp);
}
}
私は何が欠けていますか?いつもありがとう!