OxyPlot ライブラリを使用していて、積み上げ縦棒グラフを表示しようとしていますが、正しく表示されません。
以下は、チャートがどのように表示されるかのモックアップです。
PlotModel の作成方法は次のとおりです。
private void InitWidget ()
{
_goalsPlotModel = new PlotModel ("Metas") {
LegendPlacement = LegendPlacement.Outside,
LegendPosition = LegendPosition.BottomCenter,
LegendOrientation = LegendOrientation.Horizontal,
LegendBorderThickness = 0
};
SelectedChannel = new ListOfValue ();
SelectedProduct = new Product ();
SelectedChannel.Code = string.Empty;
SelectedProduct.ProductCode = string.Empty;
LoadFilters ();
Refresh ();
}
シリーズを追加する方法は次のとおりです。
private void FillGoalsPlotModel ()
{
_goalsPlotModel.Series.Clear ();
_goalsPlotModel.Axes.Clear ();
var goals = new ColumnSeries {
Title = "Goals",
FillColor = OxyColors.Orange,
IsStacked = true,
StrokeColor = OxyColors.Black,
StrokeThickness = 1
};
var sales = new ColumnSeries {
Title = "Sales",
FillColor = OxyColors.LightGreen,
IsStacked = true,
StrokeColor = OxyColors.White,
StrokeThickness = 1
};
var surplus = new ColumnSeries {
Title = "Surplus",
FillColor = OxyColors.Cyan,
IsStacked = true,
StrokeColor = OxyColors.Black,
StrokeThickness = 1
};
var categoryAxisForMonths = new CategoryAxis {
Position = AxisPosition.Bottom
};
var valueAxis = new LinearAxis (AxisPosition.Left) {
MinimumPadding = 0,
MaximumPadding = 0.06,
AbsoluteMinimum = 0
};
foreach (IGoal goal in _goals) {
if (goal.GetSales () > goal.GetGoalValue ()) {
sales.Items.Add (new ColumnItem { Value = goal.GetGoalValue () });
surplus.Items.Add (new ColumnItem { Value = goal.GetSurplus () });
} else {
sales.Items.Add (new ColumnItem { Value = goal.GetSales () });
goals.Items.Add (new ColumnItem {
Value = goal.GetGoalValue() - goal.GetSales ()
});
}
}
foreach (var month in GetMonths()) {
categoryAxisForMonths.Labels.Add (month);
}
_goalsPlotModel.Series.Add (sales);
_goalsPlotModel.Series.Add (goals);
_goalsPlotModel.Series.Add (surplus);
_goalsPlotModel.Axes.Add (categoryAxisForMonths);
_goalsPlotModel.Axes.Add (valueAxis);
RaisePropertyChanged (() => GoalsPlotModel);
}
そして、これがどのようにレンダリングされるかです:
設定IsStacked
した場合false
は垂直棒グラフを描画するだけですが、すべての棒の下部はy = 0
期待どおりですが、すべての棒の下部IsStacked
に設定すると値true
が異なりy
ます。
Oxyplot for Mono for Android Renderer のバグですか? それとも私は何か間違ったことをしていますか?(はいの場合、私が間違っていることは何ですか?)