android mpchart条形图描述位置

时间:2017-06-02 12:02:42

标签: android mpandroidchart

我在Android应用中使用的MPchart中的描述条形图有问题。

当我使用方法description.setPostion(3f, 3f)时,描述消失。 我不知道自定义它的位置的默认值。

非常感谢

Sample image of my results

1 个答案:

答案 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"是图表的描述

Hai is a description

desc.setPosition(width - 50,height - 1250); //图:2描述显示在最右角

position Top Right just change the number

"海"文字是描述