gpt4 book ai didi

java - 控制 TeeChart 中的轴标签位置

转载 作者:行者123 更新时间:2023-12-01 11:48:13 24 4
gpt4 key购买 nike

我在 TeeChart 中显示底部轴的轴标签时遇到问题。在我的例子中,轴标签相当长,并且以 dd.MM.yyyy 格式表示日期

在某些情况下,当标签彼此靠近放置时,它们会显示为一个在另一个之上(发生重叠)。我为每 N 个值手动向轴添加标签。我可以采取什么措施来防止重叠?

第二个问题是第一个标签的部分有时会显示在图表的左边界之外。因此,例如11.02.2015 用户只能看到标签的一部分,例如2.2015 等。我如何在代码中检测到此类情况?

我尝试使用 AxisLabelResolver在我的图表中,但我遇到了 AxisLabelResolver 的问题的方法未被调用。可能是什么原因?

最佳答案

使用自定义标签,您可以控制在什么条件下应该或不应该绘制标签。重叠和部分绘制在图表矩形之外的标签是需要控制的常见情况的示例,但我们更愿意在此类自定义工具中将此责任交给开发人员。

您可以使用它来了解字符串的大小:

int tmpWidth = tChart1.getGraphics3D().textWidth(myLabel);

您可以通过以下方式获取由轴定义的矩形:

Rectangle tmpChartRect = tChart1.getChart().getChartRect();

您可以使用以下方法计算轴值的位置(以像素为单位):

int tmpX = tChart1.getAxes().getBottom().calcPosValue(myXValue);

因此,您可以在添加下一个之前循环自定义标签列表。即:

private void addXCustomLabel(double myXValue, String myLabel) {
boolean overlaps = false;

tChart1.getGraphics3D().setFont(tChart1.getAxes().getBottom().getLabels().getFont());
int tmpWidth = tChart1.getGraphics3D().textWidth(myLabel);
int tmpX = tChart1.getAxes().getBottom().calcPosValue(myXValue) - tmpWidth / 2;

for (int i=0; i<tChart1.getAxes().getBottom().getCustomLabels().size(); i++) {
AxisLabelItem tmpI =tChart1.getAxes().getBottom().getCustomLabels().getItem(i);
int tmpWidth2 = tChart1.getGraphics3D().textWidth(tmpI.getText());
int tmpX2 = tChart1.getAxes().getBottom().calcPosValue(tmpI.getValue()) - tmpWidth2 / 2;

if (((tmpX>tmpX2) && (tmpX<tmpX2+tmpWidth2)) ||
((tmpX+tmpWidth>tmpX2) && (tmpX+tmpWidth<tmpX2+tmpWidth2)) ||
((tmpX<tmpX2) && (tmpX+tmpWidth>tmpX2+tmpWidth2))) {
overlaps = true;
}
}

Rectangle chartRect = tChart1.getChart().getChartRect();
if ((!overlaps) && (tmpX>chartRect.x) && (tmpX+tmpWidth<chartRect.x+chartRect.width)) {
tChart1.getAxes().getBottom().getCustomLabels().add(myXValue, myLabel);
}
}

这里唯一的问题是 calcPosValue 需要绘制一次图表才能正常工作。而且,由于 Android 控制重绘,因此技巧是在 ChartPainted 事件中执行此操作,并删除执行此操作的事件,以免重复该过程。即:

private void createCustomLabels() {

tChart1.addChartPaintListener(new ChartPaintAdapter() {

@Override
public void chartPainted(ChartDrawEvent e) {
for (int i=0; i<tChart1.getAxes().getBottom().getMaximum(); i++) {
addXCustomLabel(i, "Value " + i + " here");
}
tChart1.removeChartPaintListener(this);
tChart1.refreshControl();
}

});

}

正如您所观察到的,自定义标签不会调用 AxisLabelResolver。这是根据设计而定的。

关于java - 控制 TeeChart 中的轴标签位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28982258/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com