1

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;
4

2 に答える 2

0

ありがとうガセク。最終的に落ちたのはこんな感じ。あなたの答えがターニングポイントでした!!!

    for ( int i = 0; i < basin.DY; i++ ){
           XDate dato(1995,9,i,0,0,0); //date
           double x = (double)dato;
            //double x =  i;     
           double y =  basin.Qsim[i];     
           double y2 = basin.Qobs[i];     
            list->Add( x, y );     
            list2->Add( x, y2 );
    }
    //set the XAXis to date type
    myPane->XAxis->Type = AxisType::Date;

これは、sourceforge dot net documentation/html/M_ZedGraph_XDate__ctor_3.htm からの c++ の Xdate 型のコンストラクターです。XDate (int 年、int 月、int 日、int 時、int 分、2 倍秒)

このリンクhttp://www.c-plusplus.de/forum/viewtopic-var-t-is-186422-and-view-is-next.html で次のコードを含む詳細な例も見つけました

        /// ZedGraph Kurve //////////
private: void CreateGraph( ZedGraphControl ^zgc )
{
   GraphPane ^myPane = zgc->GraphPane;

   // Set the titles and axis labels
   myPane->Title->Text = "Gewichtskurve";
   myPane->XAxis->Title->Text = "Tag";
   myPane->YAxis->Title->Text = "Gewicht in Kg";


   // Make up some data points from the Sine function
    double x,y;
   PointPairList ^list = gcnew PointPairList();
   for ( int i=0; i<36; i++ )
   {
     x = (double) gcnew XDate( 1995, 5, i+11 );
      y = Math::Sin( (double) i * Math::PI / 15.0 );
      list->Add( x, y );
   }

   // Generate a blue curve with circle symbols, and "My Curve 2" in the legend
       LineItem ^myCurve = myPane->AddCurve( "Trainingskurve", list, Color::Blue,
       SymbolType::Circle );

       XDate ^xdatum = gcnew XDate ( 1995, 1, 1);
       xdatum->AddDays ( 1 );

       myPane->XAxis->Type = AxisType::Date;
于 2010-10-23T17:48:31.803 に答える
0

おそらく、C++ には無名変数に関する問題がありますか? double に変換する前に、まずオブジェクト
を作成してみてください。XDate

XDate date = new XDate( 1995, 5, i+11 );
double x = (double)date;
于 2010-10-17T15:21:01.003 に答える