Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WinFormでZedGraphを作成して表示しています。グラフを右クリックすると、「ポイント値を表示」するオプションがあります。これが有効になっている場合、ポイントにカーソルを合わせると、そのポイントのX/Y値が表示されます。
フォームが初期化されたら、次のようにします。
var zgc = msGraphControl1.zedGraphControl1; zgc.IsShowPointValues = true; zgc.PointValueFormat = "0.000"; zgc.PointDateFormat = "d";
それはそれをする必要があります。