0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【C++Buider】TChartでBottomAxisが動かないとき

Posted at

プログラムでTimerで

  // グローバルに宣言
TDateTime mintime;

// Timerでの処理
mintime= mintime+TDateTime(0,0,1,0); // 表示する最小時刻を1秒更新
Chart->BottomAxis->Maximum = mintime + TDateTime(0,0,5,0); // 5秒間ぶん表示
Chart->BottomAxis->Minimum = mintime;

みたいに指定することによって、測定時間経過に合わせてChartが動くようにしていたのに、Chartは動くんだけどChartの動きに合わせて一緒にAxisが動かなくなってしまったのでメモ書き。

調べたところ、BottomAxisのStyleのRoundFirstにチェックが入っていませんでした。

image.png

RoundFirstにチェックが入っていないと、plotしたデータに合わせてAxisを設定してくれないみたい。

ここで、Chartの設定のプレビューができます。わかりやすい。
https://www.steema.com/files/public/teechart/html5/latest/demos/axes/allaxes.htm

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?