4

我想知道如何使用AndroidPlot更改网格间距。我的网格目前有 9 行域和 9 行范围,我不知道这是从哪里来的。

此外,如果您碰巧知道如何使图形线更粗一点,那将不胜感激。

这是应该修复的最后两点,我已经搜索了一段时间。

我几乎发现了如何“让其他一切看起来都很漂亮”。

非常感谢您的帮助和时间。

4

1 回答 1

6

如何更改 GRID(两种可能的方式):

plot.setRangeStep(XYStepMode.INCREMENT_BY_VAL, 125);
plot.setDomainStep(XYStepMode.SUBDIVIDE, 16);

如何更改图形线的粗细:您需要以这种方式更改您正在使用的 LineAndPointFormatter(使用 lineAndPointFormatter 的当前 Paint 初始化 Paint 是必不可少的,否则您会得到非常奇怪的行为):

LineAndPointFormatter lineAndPointFormatter = new LineAndPointFormatter(
        Color.rgb(0, 0, 0), null, null);

//change the line width
Paint paint = lineAndPointFormatter.getLinePaint();
paint.setStrokeWidth(3);
lineAndPointFormatter.setLinePaint(paint);

// create a series using a temporary formatter, with a transparent fill
// applied immediately
xyPlot.addSeries(currentConsumptionSeries, lineAndPointFormatter);
于 2012-05-23T15:37:29.903 回答