このリンクhttp://www.asp.net/web-pages/tutorials/data/7-displaying-data-in-a-chartを見て円グラフを見た後、同じグラフを作成できるようにしたい私のMVC4ページ。
円グラフを使用すると、2D 円グラフが描画されます。どうすればその 3D チャートを取得できますか?
これはビューのコードです:
@{
var grafico = new Chart(width: 200, height: 200, theme: ChartTheme.Vanilla)
.AddTitle("Cantidad de Servicios por Día")
.AddSeries(
chartType: "Pie",
name: "CantidadServiciosPorDia",
xValue: @ViewData["X"] as string[],
yValues: @ViewData["Y"] as string[])
.Write();
}
乾杯、ハイメ