Androidplot - 在绘图区域内定位范围标签
Androidplot - Positioning range labels inside plotting area
我正在尝试格式化图表上的范围标签,使它们位于绘图区域内以最大化我的不动产。
我遇到的问题是我无法弄清楚如何将范围标签垂直放置,这样标签就被剪掉了:
为了得到如图所示的图表,我使用以下内容:
plot.setRangeBoundaries(-300, 300, BoundaryMode.FIXED);
plot.getGraph().setMargins(-100,0,0,-80);
plot.getGraph().getLineLabelInsets().setLeft(PixelUtils.dpToPix(60));
在内部放置标签的最佳方式是什么?
所以我一直无法正确设置标签的格式,作为解决方法,我添加了自己的自定义标签。
有一种方法可以通过 LineLabelStyle 设置自定义标签,但如果我们使用它,我们最终会遇到同样的情况。
因此,我们改为使用具有 xml 属性 android:elevation="1dp" 的 TextView。因为我实现了 PanZoom,所以我们必须拦截触摸事件并根据 PanZoom 的变化相应地更新标签。
这是在用户 PanZooms 时更新 TextView 标签的基本实现:
PanZoom.attach(plot).setDelegate(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
switch (motionEvent.getAction()) {
case MotionEvent.ACTION_DOWN: {
//Update graph labels with plot.getBounds().asRectF();
rangeLabel1.setText("My TextView rangeLabel gets updated here!");
rangeLabel2.setText("You have to calculate value for each label")
domainLabel1.setText("Do the same for domain labels also");
domainLabel2.setText("etc...");
break;
}
case MotionEvent.ACTION_MOVE: {
//Update graph labels with plot.getBounds().asRectF();
rangeLabel1.setText("My TextView rangeLabel gets updated here!");
rangeLabel2.setText("You have to calculate value for each label")
domainLabel1.setText("Do the same for domain labels also");
domainLabel2.setText("etc...");
break;
}
case MotionEvent.ACTION_UP: {
//Update graph labels with plot.getBounds().asRectF();
rangeLabel1.setText("My TextView rangeLabel gets updated here!");
rangeLabel2.setText("You have to calculate value for each label")
domainLabel1.setText("Do the same for domain labels also");
domainLabel2.setText("etc...");
break;
}
}
//Return false to allow PanZoom to receive control
return false;
}
});
我正在尝试格式化图表上的范围标签,使它们位于绘图区域内以最大化我的不动产。
我遇到的问题是我无法弄清楚如何将范围标签垂直放置,这样标签就被剪掉了:
plot.setRangeBoundaries(-300, 300, BoundaryMode.FIXED);
plot.getGraph().setMargins(-100,0,0,-80);
plot.getGraph().getLineLabelInsets().setLeft(PixelUtils.dpToPix(60));
在内部放置标签的最佳方式是什么?
所以我一直无法正确设置标签的格式,作为解决方法,我添加了自己的自定义标签。
有一种方法可以通过 LineLabelStyle 设置自定义标签,但如果我们使用它,我们最终会遇到同样的情况。
因此,我们改为使用具有 xml 属性 android:elevation="1dp" 的 TextView。因为我实现了 PanZoom,所以我们必须拦截触摸事件并根据 PanZoom 的变化相应地更新标签。
这是在用户 PanZooms 时更新 TextView 标签的基本实现:
PanZoom.attach(plot).setDelegate(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
switch (motionEvent.getAction()) {
case MotionEvent.ACTION_DOWN: {
//Update graph labels with plot.getBounds().asRectF();
rangeLabel1.setText("My TextView rangeLabel gets updated here!");
rangeLabel2.setText("You have to calculate value for each label")
domainLabel1.setText("Do the same for domain labels also");
domainLabel2.setText("etc...");
break;
}
case MotionEvent.ACTION_MOVE: {
//Update graph labels with plot.getBounds().asRectF();
rangeLabel1.setText("My TextView rangeLabel gets updated here!");
rangeLabel2.setText("You have to calculate value for each label")
domainLabel1.setText("Do the same for domain labels also");
domainLabel2.setText("etc...");
break;
}
case MotionEvent.ACTION_UP: {
//Update graph labels with plot.getBounds().asRectF();
rangeLabel1.setText("My TextView rangeLabel gets updated here!");
rangeLabel2.setText("You have to calculate value for each label")
domainLabel1.setText("Do the same for domain labels also");
domainLabel2.setText("etc...");
break;
}
}
//Return false to allow PanZoom to receive control
return false;
}
});