0
図に示すように、私はMPAndroid LibrarayのHorizontal Barchartを使用しようとしていますが、図のようにグラフの最後には、 。私はまた、チャートのスタイリングのコードを添付しています。誰かが私のコードでエラーを修正するために助けてもらえますか? MpChartエラーのためExtra Line in MpAndroid水平棒グラフ
bardataset.setValueTextSize(15);
List<Integer>colors = new ArrayList<>();
colors.add(Color.rgb(220,209,227));
colors.add(Color.rgb(88,130,250));
bardataset.setColors(colors);
tempchart.getDescription().setEnabled(false);
///// disabling chart legend
tempchart.getLegend().setEnabled(false);
tempchart.getAxisLeft().setDrawAxisLine(false);
tempchart.getAxisLeft().setDrawGridLines(false);
tempchart.getXAxis().setDrawGridLines(false);
tempchart.getAxisRight().setDrawAxisLine(false);
tempchart.getAxisRight().setDrawGridLines(false);
tempchart.getDescription().setEnabled(false); // Hide the description
tempchart.getAxisLeft().setDrawLabels(false);
tempchart.getAxisRight().setDrawLabels(false);
tempchart.getXAxis().setDrawLabels(false);
tempchart.getLegend().setEnabled(false); // Hide the legend
BarData bardata = new BarData(bardataset);
bardata.setBarWidth(0.20f);
tempchart.setData(bardata);
tempchart.invalidate();
画像:
おかげで男をこの行を追加します。それは本当に私の日を救った。ありがとうございます –
お寄せいただきありがとうございます。答えを受け入れてください。 – amarok