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.
当我使用以下简单代码绘制二维蜡烛条系列时,开/关的 Y 值为 0,但与轴的 0 不匹配。前者比后者(轴的网格)高1或2个像素。
Series1.AddCandle(0, 0, 1, -1, 0);
有什么解决办法吗?
这是我添加到要调查的缺陷列表 (TV52016642) 中的错误。对于高点和低点,您有两种选择:
1-改变轴偏移:
Chart1.Axes.Left.MinimumOffset:=-1; Chart1.Axes.Left.MaximumOffset:=-1;
2-改变轴的最小值和最大值:
Chart1.Axes.Left.SetMinMax(Series1.MinYValue, Series1.MaxYValue);