c++ builder > TeeChart > 対数スケール > LeftAxis->Increment は 0にしないとだめ
C++ Builder XE4
左軸を対数スケールにする時、LeftAxis->Incrementは0をセットしないと間隔表記がおかしくなってしまうようだ。
formPtr->Chart_short->LeftAxis->Logarithmic = true;
formPtr->Chart_short->LeftAxis->SetMinMax(0.00001, 1.0);
formPtr->Chart_short->LeftAxis->Increment = 0;
formPtr->Chart_short->LeftAxis->MinorTickCount = 8;
参考
http://www.teechart.net/support/viewtopic.php?f=4&t=11822
The real cause of the problem is not having this property set:
Points1.Chart.Axes.Bottom.Increment = 0
Points1.Chart.Axes.Left.Increment = 0
Points1.Chart.Axes.Right.Increment = 0
Points1.Chart.Axes.Top.Increment = 0lilo
Author And Source
この問題について(c++ builder > TeeChart > 対数スケール > LeftAxis->Increment は 0にしないとだめ), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/c4a74f2444cfe832e72d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .