您好
我有一个项目想采用C1的ASP.net MVC OLAP,我下载了官方演示程序,做了简单的修改如下(将几个属性值改为中文):
namespace Olap101.Models
{
public class ProductDatas
{
private static Random r = new Random();
public int ID { get; set; }
public string 产品{ get; set; }
public string 国家 { get; set; }
public DateTime Date { get; set; }
public int Sales { get; set; }
public int Downloads { get; set; }
public bool Active { get; set; }
public double Discount { get; set; }
private static int randomInt(int max)
{
return (int)Math.Floor(r.NextDouble() * (max + 1));
}
public static IEnumerable<ProductDatas> GetData(int cnt)
{
string[] countries = "China,India,Russia,US,Germany,UK,Japan,Italy,Greece,Spain,Portugal".Split(',');
string[] products = "Wijmo,Aoba,Xuni,Olap".Split(',');
List<ProductDatas> result = new List<ProductDatas>();
for (var i = 0; i < cnt; i++)
{
result.Add(new ProductDatas
{
ID = i,
产品= products[randomInt(products.Length - 1)],
国家= countries[randomInt(countries.Length - 1)],
Date = new DateTime(DateTime.Today.Year - 2 + randomInt(2), randomInt(11) + 1, randomInt(27) + 1),
Sales = randomInt(10000),
Downloads = randomInt(10000),
Active = randomInt(1) == 1 ? true : false,
Discount = r.NextDouble()
});
}
return result;
}
}
}
这样修改后,页面的OlapPanel中,无法显示任何内容了。
请问是不是不支持中文,或是采用其他什么方式来显示中文字段?
非常感谢。
|
|