gpt4 book ai didi

android - MPAndroidChart - 图例标签被切断

转载 作者:IT王子 更新时间:2023-10-28 23:33:26 25 4
gpt4 key购买 nike

我正在使用 MPAndroidChart library .有人有这个问题吗?当我将标签放在 BOTTOM 位置时,这些标签被剪掉了。

谢谢

enter image description here

最佳答案

这似乎是一个新的feature自 2015 年 6 月以来:

chart.getLegend().setWordWrapEnabled(true);

Javadoc:

/**
* Should the legend word wrap? / this is currently supported only for:
* BelowChartLeft, BelowChartRight, BelowChartCenter. / note that word
* wrapping a legend takes a toll on performance. / you may want to set
* maxSizePercent when word wrapping, to set the point where the text wraps.
* / default: false
*
* @param enabled
*/
public void setWordWrapEnabled(boolean enabled) {
mWordWrapEnabled = enabled;
}

关于android - MPAndroidChart - 图例标签被切断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27847583/

25 4 0