Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法改变图表标题(x 轴、y 轴和图表标题)的颜色aChartEngine?我将背景更改为黑色,但无法显示这些标签,因为它们也是黑色的。
aChartEngine
使用该renderer.setLabelsColor(Color);命令更改轴标题。我不确定标题,它可以使用相同的命令进行更改。如果您想更改轴上的数据值,renderer.setXLabelsColor(Color);and renderer.setYLabelsColor(scale, Color);命令将为您完成。
renderer.setLabelsColor(Color);
renderer.setXLabelsColor(Color);
renderer.setYLabelsColor(scale, Color);
如果您访问 achartengine 的网站,您可以将 javadoc 下载为 zip 文件,解压缩,然后在浏览器中查看。它有大量的文档可以找到你通常需要的东西=)