我正在使用 Androidplot (v0.5.0),我希望我绘制的系列的片段是不同的颜色。我想我需要使用 RectRegion 但该区域从不显示。
XYSeries series = new SimpleXYSeries(timestamps, item.getValues(), "");
LineAndPointFormatter seriesFmt = new LineAndPointFormatter(
Color.rgb(0, 200, 0),
Color.rgb(0, 100, 0),
Color.rgb(150, 190, 150));
XYRegionFormatter regionFmter = new XYRegionFormatter(Color.RED);
RectRegion region = new RectRegion(0, 10, 0, 10);
seriesFmt.addRegion(region, regionFmter);
我再也找不到 doco 了,但我可以从我试图实现的旧教程中找到旧图像。 http://androidplot.com/w/images/thumb/1/12/RectRegions_final.jpg/398px-RectRegions_final.jpg