我正在尝试使用 VS2010(mvc、ef 和 asp.net)中的罐装图表控件将饼图的标签移开
这是我显示饼图的代码。
string xx = activePhysicianID;
ArrayList xValue = new ArrayList();
ArrayList yValue = new ArrayList();
XXXXX_MainEntities dbContext = new XXXXX_MainEntities();
var results = dbContext.Payor.Where(rs => rs.PhysicianIdentity.Equals(xx));
results.ToList().ForEach(rs => xValue.Add(rs.Identifier));
results.ToList().ForEach(rs => yValue.Add(rs.Strength));
var chart = new Chart(600, 300, ChartTheme.Blue);
chart.AddSeries(chartType: "Pie", xValue: xValue, yValues: yValue);
chart.AddTitle("Payor");
chart.Write("png");
return null;
饼图渲染OK,但是饼图上的标签,太难看懂了。我想用指向该段的线来标记图表之外的标签。
谢谢