0

我正在使用 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在此处输入图像描述

4

1 回答 1

1

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

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

于 2012-08-11T07:03:22.577 回答