我在Android应用中使用的MPchart中的描述条形图有问题。
当我使用方法description.setPostion(3f, 3f)
时,描述消失。
我不知道自定义它的位置的默认值。
非常感谢
答案 0 :(得分:0)
你的描述隐藏在TOP_LEFT角落,所以使用代码不设置描述位置我的模拟器高度是1280,重量是720
//get the height and width of the device
DisplayMetrics ds = new DisplayMetrics();
this.getWindowManager().getDefaultDisplay().getMetrics(ds);
int width = ds.widthPixels;
int height = ds.heightPixels;
//set the custom description postion
Description desc = new Description();
desc.setText("Hai");
desc.setTextSize(13f);
desc.setPosition(width - 50,height - 175);
graph.setDescription(desc);
下图" Hai"是图表的描述
desc.setPosition(width - 50,height - 1250); //图:2描述显示在最右角
"海"文字是描述