gpt4 book ai didi

android - MPAndroidChart 有没有办法为不同的条设置不同的颜色?

转载 作者:太空宇宙 更新时间:2023-11-03 12:17:30 28 4
gpt4 key购买 nike

我在我的应用程序中使用 MPAndroidChart,我想知道是否有办法为动态移动条形图中的第一个条设置不同的颜色,如下所示: enter image description here

条形是动态添加的,同时随着数据不断涌入,整个堆栈向左移动,有没有办法将第一个条形的颜色设置为不同的颜色?提前谢谢你。

编辑和解决方案:这是我向图表添加新条目的代码,它每 500 毫秒左右动态发生一次。

 private void addBarEntry(float value) {


BarData data = mDownloadChart.getData();

if(data != null) {

BarDataSet set = data.getDataSetByIndex(0);
// set.addEntry(...); // can be called as well

if (set == null) {
set = createBarSet();
data.addDataSet(set);
}

// add a new x-value first
data.addXValue(set.getEntryCount() + "");

// choose a random dataSet
//int randomDataSetIndex = (int) (Math.random() * data.getDataSetCount());

data.addEntry(new BarEntry(value, set.getEntryCount()), 0);

// let the chart know it's data has changed
mDownloadChart.notifyDataSetChanged();

SLog.d(TAG, "download value: "+value);

mDownloadChart.setVisibleXRange(10);
mDownloadChart.moveViewToX(mDownloadChart.getHighestVisibleXIndex()-5);

// redraw the chart
mDownloadChart.invalidate();
}
}

感谢@Philipp Jahoda 我让它工作了,只需在你的 addEntry 方法中添加这段代码:

int[] colors = new int[set.getEntryCount()];
for (int i = 0; i<colors.length; i++){
colors[i]=Color.parseColor("your-hex-color-for-all-entries");
}
colors[colors.length-1] = Color.parseColor("your-hex-color-for-last-entry");

set.setColors(colors);

最佳答案

是的,有,它在documentation .

基本上,您可以为图表中的每个条设置单独的颜色。目前有点不方便,因为在您的情况下,您必须将每种颜色设置为“红色”,最后一种颜色设置为“绿色”。

我正在努力改进它。

关于android - MPAndroidChart 有没有办法为不同的条设置不同的颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29879943/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com