Annotations on candlestick chart not working

删除回忆录丶 提交于 2020-01-20 08:31:11

问题


I'm trying to add annotations to a chart. It seems like it's added, since the size() of the plot's annotations list increases if I add one more. The problem is that it's not being displayed.

OHLCDataset candles = createCandleDataset();

// Create chart
chart = ChartFactory.createCandlestickChart(
    "mychart", "", "", candles, true);

XYPlot plot = (XYPlot) chart.getPlot();        

XYShapeAnnotation a1 = new XYShapeAnnotation(
    new Rectangle2D.Double(10.0, 20.0, 20.0, 30.0),
    new BasicStroke(1.0f), Color.blue);
plot.addAnnotation(a1);

ChartPanel panel = new ChartPanel(chart);
setContentPane(panel);

Any ideas?


回答1:


The XYShapeAnnotation API says:

The shape coordinates are specified in data space.

The coordinates of your Rectangle2D may be inapparent relative to your actual data. Instead, use coordinates from your OHLCDataset to construct your annotation. Focusing on the second item in series1 in this example, the chart below illustrates retrieving data from the underlying OHLCSeries to create an annotation one period wide and spanning the high/low value.

// series
addSeries1();
OHLCSeries series = seriesCollection.getSeries(0);
OHLCItem item = (OHLCItem) series.getDataItem(1);
RegularTimePeriod t = item.getPeriod();
long x = t.getFirstMillisecond();
long w = t.getLastMillisecond() - t.getFirstMillisecond(); 
double y = item.getLowValue();
double h = item.getHighValue() - y;
XYShapeAnnotation a1 = new XYShapeAnnotation(
    new Rectangle2D.Double(x, y, w, h),
    new BasicStroke(1f), Color.blue
);
chart.getXYPlot().addAnnotation(a1);

Other implementations of OHLCDataset have corresponding accessors.



来源:https://stackoverflow.com/questions/56579057/annotations-on-candlestick-chart-not-working

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!