设置负x轴值androidplot

时间:2016-09-04 18:56:59

标签: android graph androidplot

我对androidplot图中x轴的负值怎么做不知道。

Here's the picture i want the line in negative x axis

1 个答案:

答案 0 :(得分:0)

默认情况下,Androidplot会尝试对其提供的任何系列数据进行框架化,以最大限度地利用屏幕空间。您可以通过手动指定边界来更改此行为,或者您可以告诉Androidplot以特定点为中心。在你的情况下:

plot.centerOnDomainOrigin(0);
plot.centerOnRangeOrigin(0);

查看f(x) demo source以获取完整示例。