ChartExというクラスがあります
public class ChartEx
{
public string name { get; set; }
public List<int> data { get; set; }
}
コードビハインドから呼び出そうとしています
List<int> lstXaxis = new List<int>() { 9, 10, 11, 12 };
List<ChartEx> lstseries = new List<ChartEx>();
認識できList<int> lstXaxis = new List<int>() { 9, 10, 11, 12 };
ますが、エラーが表示されますList<ChartEx> lstseries = new List<ChartEx>();