怎样在MPAndroidChart中使用setDescription方法呢?

前言:最近在做一个项目,需求是实现一个天气预报页面效果。页面中用到了折线图,而我也是第一次接触android中的画图库,老师给我推荐了MPAndroidChart。在将MPChart配置好以后马上就遇到一个问题,即本文的标题(如何setDescription)。在其他博主的介绍MPAndroidChart的文章中都用到了setDescription()方法(用来描述chart),但是我在使用时总是提示无法输入字符串内容。好了,话不多说,下面是解决方法:

1.将mChart.setDescription()改成这种格式:↓↓↓↓↓

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

2.下面我们来探讨一下原因,没时间看原因的小伙伴们可以退出了。

通过查看介绍MPAndroidChart使用的博主们的博客发表时间注意到:发布时间在2016-2017年居多,然而,现在已经是9012年了好吧。换句话说,setDescription()方法已经过时了!最新的MPChart描述Chart方法是getDescription().setText(" Description of chart ");

3.通过该问题的解决所得到的启发

广大程序猿同胞们不能过于依赖博客,这种问题其实只要查看一下官方文档就是可以解决的(而我因此浪费了一整天的时间,哭)。

 

最后,附上Stack Overflow大神的回答:https://stackoverflow.com/questions/41779244/how-to-set-description-in-mpandroidchart

你可能感兴趣的:(android开发小知识点)