0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

c++ builder XE4, 10.2 Tokyo > TeeChart > 時間軸の最大最小の設定 > target->Axes->Bottom->SetMinMax(setSt, setEd);

Last updated at Posted at 2015-12-02
動作環境
C++ builder XE4
    TeeChart Lite v2013.08.130414
RAD Studio 10.2 Tokyo Update 2 (追記 2018/01/10)
    TeeChart v2016.17.160129 32bit VCL

TeeChartにて時間軸の最小と最大を変更しようとした。

参考
https://www.steema.com/files/public/teechart/java/v1/docs/Tutorials/tutorial4.htm

try1 > 最小と最大を個別設定

上記を参考に以下を実行しようとした。
ここで、targetはTChart *型。

test.cpp
	TDateTime setSt, setEd;

	setSt = VarToDateTime("2015/12/02 10:00");
	setEd = VarToDateTime("2015/12/02 12:00");

	target->Axes->Bottom->Minimum = setSt;
	target->Axes->Bottom->Maximum = setEd;

以下のエラーダイアログが表示された。

XXX
Axis Minimum Value must be <= Maximum.

最小を設定する時に、現在の最大の値によりエラーが出る。

try2 > 最小と最大を同時設定

再度、参考ページを確認して、以下でできることが分かった。

test2.cpp
	TDateTime setSt, setEd;

	setSt = VarToDateTime("2015/12/02 10:00");
	setEd = VarToDateTime("2015/12/02 12:00");

	target->Axes->Bottom->SetMinMax(setSt, setEd);
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?