TeeChart 更改轴标题和轴之间的距离 DELPHI XE3
TeeChart change distance between axis title and axis DELPHI XE3
我有图表,在底部轴上显示了日期。我已将日期字符串分成两行。第一个是日期,第二个是时间。我现在的问题是,标签和轴标题重叠 -> 参见图片:
我在谷歌上搜索了一段时间,但没有找到可用于设置轴标题和轴之间距离的解决方案或选项。 属性
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
有没有属性我没看到?
提前感谢您的帮助!
好像没有自动计算标签的高度
西雅图 TChart:
在对象中。检查员:BottomAxis - Labels - LabelSize set value 32
在图表编辑器中:Axis - BottomAxis - Labels - Style - Size
在代码中:Chart.BottomAxis.LabelsSize := 2 * UsualValue
我有图表,在底部轴上显示了日期。我已将日期字符串分成两行。第一个是日期,第二个是时间。我现在的问题是,标签和轴标题重叠 -> 参见图片:
我在谷歌上搜索了一段时间,但没有找到可用于设置轴标题和轴之间距离的解决方案或选项。 属性
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
有没有属性我没看到?
提前感谢您的帮助!
好像没有自动计算标签的高度
西雅图 TChart:
在对象中。检查员:BottomAxis - Labels - LabelSize set value 32
在图表编辑器中:Axis - BottomAxis - Labels - Style - Size
在代码中:Chart.BottomAxis.LabelsSize := 2 * UsualValue