如何在 MPAndroidChart 中设置描述?

How to set description in MPAndroidChart?

我是新 MPAndroidChart 用户。

我在网上找到的示例和 Wiki here 都给出了 setDescription() 原型:

setDescription(String desc)`

但是,mChart.setDescription(""); 没有为我编译,AndroidStudio->Go To Declaration 告诉我 Chart.java 中定义的 setDescription 的声明是:

   public void setDescription(Description desc) {
        this.mDescription = desc;
    }

并且 Description.java 中的 Description 构造函数不接受字符串。

如何设置描述(或至少将其关闭)?我指向错误的库了吗?

这是我应用程序的 gradle 文件:

// Top-level build file where you can add configuration options common to all sub-projects/modules.
allprojects {
    repositories {
        maven { url "https://jitpack.io" }
    }
}
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.3'


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

并且,模块 gradle 文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.example.android.nbmc_hbmc"
        minSdkVersion 19
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.1.0'
    compile 'com.github.PhilJay:MPAndroidChart:v3.0.1'
    compile 'com.google.android.gms:play-services-auth:10.0.1'
    compile 'pub.devrel:easypermissions:0.2.1'
    testCompile 'junit:junit:4.12'
}

这是我的图表代码。它会编译并显示图表,但它有我无法更改或关闭的描述标签 "Description Label"。

import com.github.mikephil.charting.charts.LineChart;
import com.github.mikephil.charting.components.Description;
import com.github.mikephil.charting.data.Entry;
import com.github.mikephil.charting.data.LineData;
import com.github.mikephil.charting.data.LineDataSet;
import com.github.mikephil.charting.interfaces.datasets.ILineDataSet;

import java.util.ArrayList;
import java.util.List;

import static com.example.android.nbmc_hbmc.R.id.chart;

public class NbmcEcgGraphActivity extends Activity {


    private RelativeLayout mainLayout;
    private LineChart mChart;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_ecggraph);
        mainLayout = (RelativeLayout) findViewById(R.id.activity_ecggraph);

        // Create new line chart
        LineChart mChart = (LineChart) findViewById(chart);

        mChart.setDescription(new Description());
        mChart.setNoDataText("No Data Yet");

看来维基已经过时了!

MPAndroidChart 3.0.1 中的正确语法是

mChart.getDescription().setText("Description of my chart");

参考:javadoc