我正在使用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

最佳答案

这是生成您发布的图形的完整源代码的链接-希望可以提供您正在寻找的答案:)

https://androidplot.jira.com/source/browse/ANDROIDPLOT/trunk/Examples/DemoApp/src/com/androidplot/demos/XYRegionExampleActivity.java?hb=true

关于java - AndroidPlot和RectRegion,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11912666/

10-09 04:44