我有图表显示底轴日期。我将日期字符串拆分为两行。第一个是日期,第二个是时间。我的问题是,标签和轴标题重叠 - >见图像:
我用谷歌搜索了一段时间,但没有找到解决方案或选项,我可以使用它来设置轴标题和轴之间的距离。该物业
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
有没有我看不到的财产?
提前感谢您的帮助!