Xamarin.Android MPAndroidChart Barchart:条在x轴标签上未正确对齐

时间:2018-10-24 14:33:00

标签: android xamarin xamarin.android bar-chart mpandroidchart

我正在使用MPAndroidChart条形图...一切正常,除了x轴...我的条形图在标签上未正确对齐。当我缩放图表时,条形图会出现在其标签上,但是该缩放不是我想要的,并且在缩放标签时也要重复到下一个,依此类推。 我的数据例如:

age(x)  weight(y)
2      90
5      100
7      200
10     300

年龄是我的标签,它是字符串类型...我需要将其作为字符串标签。

这就是我得到的 enter image description here

enter image description here

这是我在C#中的代码

//-----chart-------------
            barChart = FindViewById<BarChart>(Resource.Id.barChart);


            List<BarEntry> entries = new List<BarEntry>();
            List<string> labelz = new List<string>();


            int c = 0;
            foreach(var rec in weighting_lst)
            {

                entries.Add(new BarEntry(c, rec.Weight));
                labelz.Add(rec.Age.ToString());
                c++;


            }


            BarDataSet dataset = new BarDataSet(entries, "وزن به گرم");
            BarData data = new BarData(dataset);


            var xdata = barChart.XAxis;
            xdata.ValueFormatter = new MyLabelFormatter(labelz);
            xdata.SetCenterAxisLabels(false);

            barChart.Data = data;
            barChart.SetScaleEnabled(true);
            barChart.SetFitBars(true);

public class MyLabelFormatter : Java.Lang.Object, IAxisValueFormatter
        {
            //private string[] customLabels = new string[] { "A", "B", "C", "D", "E", "F" };

            public List<string> label_lst = new List<string>();

            public MyLabelFormatter(List<string> _label_lst)
            {
                label_lst = _label_lst;
            }

            public string GetFormattedValue(float value, AxisBase axis)
            {
                return label_lst[(int)value % label_lst.Count];
            }
        }

对于条形条目的x位置,我只使用一个称为c的整数,该整数在每个循环中加1,因此它给我的感觉就像0f,1f,2f,......

1 个答案:

答案 0 :(得分:0)

我添加了xdata.Granularity = 1f;,它对我有用.... xdata是我的Xaxis