C++ サンプル プロジェクトを使用して、ZedGraph を使用して C++ プロジェクトからグラフを描画することに成功しました。ただし、C++ の日付軸の例はありません。
次のコードは、 http://zedgraph.org/wiki/index.php?title=Tutorial:Date_Axis_Chart_Demoにある C# の例から抜粋したものです。私の問題がどこにあるかを確認するには、テキスト //JEM// を含む私のコメントを参照してください
PointPairList list = new PointPairList();
for ( int i=0; i<36; i++ )
{
double x = (double) new XDate( 1995, 5, i+11 );
> //JEM //This line above doesn't work in
> C++.
double y = Math.Sin( (double) i * Math.PI / 15.0 );
list.Add( x, y );
}
....missing code...
// Set the XAxis to date type
myPane.XAxis.Type = AxisType.Date;
//JEM //This one also doesn't work even if I change it to the
//syntax that C++ understands, that is,
myPane->XAxis->Type = AxisType->Date;