1

我想旋转 IntervalMarker 的标签:

        IntervalMarker im = new IntervalMarker(...);
        im.setLabel("LABEL");
//      im.setLabelOffsetType(LengthAdjustmentType.EXPAND);
//      im.setLabelOffset(new RectangleInsets(10.0, 10.0, 10.0, 10.0)); 
//      im.setLabelFont(new Font("SansSerif", Font.ITALIC, 11));
        im.setLabelAnchor(RectangleAnchor.TOP_LEFT);
        im.setLabelTextAnchor(TextAnchor.TOP_LEFT);
        im.setPaint(new Color(208, 194, 214));

它不允许我上传图片,这是链接:http: //i54.tinypic.com/5z40fs.png

我想要“标签”垂直,以获得更好的外观。

谢谢

4

3 回答 3

4

我发现将文本注释添加到垂直标记以更好地控制它们的标签更容易。这是一个例子:

// vertical line marker and label
Marker updateMarker = new ValueMarker(dayOf, Color.black, dashedStroke, null, null, 1.0f);    
XYTextAnnotation updateLabel = new XYTextAnnotation("Update", dayOf - labelOffset, labelHeight);
updateLabel.setFont(new Font("Sans Serif", Font.BOLD, 10));
updateLabel.setRotationAnchor(TextAnchor.BASELINE_CENTER);
updateLabel.setTextAnchor(TextAnchor.BASELINE_CENTER);
updateLabel.setRotationAngle(-3.14 / 2);
updateLabel.setPaint(Color.black);
plot.addDomainMarker(updateMarker, Layer.BACKGROUND);
plot.addAnnotation(updateLabel);

这种旋转使标签出现在从下到上读取的垂直标记线的左侧。我使用变量“labelOffset”和“labelHeight”来确定标签相对于垂直线的确切位置,但这些也可以静态设置。

于 2012-11-14T16:29:05.970 回答
3

渲染标记的标签由draw{Domain|Range}Marker()绘图渲染器的方法使用drawAlignedString(). 您必须drawRotatedString()改用 .

于 2011-08-12T15:15:28.833 回答
0

我找不到如何直接执行此操作,但您始终可以将旋转的文本注释放在适当的位置。

于 2011-09-05T15:58:05.113 回答