MPAndroidChart有没有办法为不同的栏设置不同的颜色?

时间:2015-04-26 15:59:35

标签: android view graph charts mpandroidchart

我在我的应用程序中使用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);

1 个答案:

答案 0 :(得分:7)

是的,它存在于documentation

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

我正在努力改进它。