Where can I find the data that is used to feed the demos for charts? All of the chart demos have calls where I can't really see what data is being fed to the chart. For example in the Treemap demo:
public ActionResult Index_PopulationUSA()
{
return Json(TreeMapDataRepository.PopulationUSAData(), JsonRequestBehavior.AllowGet);
}
Where can I see the data in TreeMapdataRepository.PopulationUSAData?