Android xamarin で棒グラフを表示しました。3つのカテゴリを持つ単純な棒グラフを表示したい。
私が欲しいもの:-
私が得るもの:-
現在、私のグラフは水平に表示されています。図1のように表示したい。
これが私のコードです:-
var plotModel1 = new PlotModel();
plotModel1.LegendOrientation = LegendOrientation.Vertical;
plotModel1.PlotAreaBorderColor = OxyColors.White;
var barSeries1 = new BarSeries();
for (int i = 0; i < barValues.Length && i < colorPallete.Length && i<barTitles.Length; i++)
{
barSeries1.Items.Add(new BarItem(barValues[i], -1) { Color = OxyColor.Parse(colorPallete[i]) });
}
plotModel1.Series.Add(barSeries1);
MyModel = plotModel1;
barPlotView.Model = MyModel;