TeeChart改变轴标题和轴之间的距离DELPHI XE3

时间:2016-05-19 12:36:03

标签: delphi teechart

我有图表显示底轴日期。我将日期字符串拆分为两行。第一个是日期,第二个是时间。我的问题是,标签和轴标题重叠 - >见图像:

Issue: Title and label overlapping

我用谷歌搜索了一段时间,但没有找到解决方案或选项,我可以使用它来设置轴标题和轴之间的距离。该物业 TChart.MarginBottom仅更改绘图区域和组件边框之间的边距。我尝试了不同的属性来设置标题垂直位置:

// chtData is of type TChart
chtData.BottomAxis.Title.VertTextAlign := TVertTextAlign.vtaBottom; // Did not change anything
chtData.BottomAxis.Title.Margins.Top := 20; // Did not change anything

有没有我看不到的财产?

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:3)

似乎没有自动计算标签'高度

Seattle TChart:

在Obj。检查员:BottomAxis - Labels - LabelSize set value 32

图表编辑器中的

Axis - BottomAxis - Labels - Style - Size

代码中的

Chart.BottomAxis.LabelsSize := 2 * UsualValue

enter image description here