试图在图表中显示百分比

时间:2011-10-19 00:35:42

标签: asp.net-mvc charts

我一直在尝试使用以下方式在饼图上显示百分比:

 var keyb = new Chart(width: 600, height: 250, theme: ChartTheme.Blue)
                .AddTitle("Distribución en el ingreso de especies")
                .AddSeries(
                chartType: "pie",
                axisLabel: "#VALX (#PERCENT)",                    
                legend: "Rainfall",
                xValue: speciesTypesNames,
                yValues: speciesQ)
                .Write(format: "png");

xValues和yValues分别为List<string>List<int>。  但它不起作用。我怎样才能解决这个问题?

0 个答案:

没有答案