DX11.2にも同じ特性があります。DX11.2デモの次のコードスニペットを確認してください
if (settings.Diagram is XYDiagram) {
((XYDiagram)settings.Diagram).Rotated = options.Rotated;
Axis2D axisY = ((XYDiagram)settings.Diagram).AxisY;
axisY.Interlaced = true;
axisY.Title.Text = "Population, millions";
axisY.Title.Visible = true;
}
else {
XYDiagram3D diagram = (XYDiagram3D)settings.Diagram;
diagram.AxisX.Label.MaxWidth = 60;
diagram.AxisY.Interlaced = true;
diagram.RotationType = RotationType.UseAngles;
diagram.RotationOrder = RotationOrder.XYZ;
diagram.ZoomPercent = 140;
diagram.VerticalScrollPercent = 4;
}
Html.DevExpress().Chart(settings)
.Bind(Model)
.Render();
DevExpress DemosフォルダーでChartDemo(C:\ Users \ Public \ Documents \ DevExpress 2011.2 Demos \ Components \ ASP.NET \ MVC \ CS \ MVCDemos \ Views \ Chart)を確認すると、部分的なビューファイル名「BarViewsSideBySideStackedPartial」が表示されます。 "これはこれを実装するのに役立ちます。
この助けを願っています。