This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//**************************************************************************** | |
// flickrGraphs.js | |
// jQuery Flickr Graph | |
// @Author: J Corbilla. | |
// @Description: This unit uses jqplot to display the content of the xml file | |
// 2015 | |
//***************************************************************************** | |
$(document).ready(function () { | |
$.ajax({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SingleStats | |
{ | |
public String Date; | |
public Nullable<int> Value; | |
} | |
public ActionResult fetchData(int id) | |
{ | |
XmlDocument doc = new XmlDocument(); | |
doc.Load("c:\\temp\\flickrRepositoryGlobal.xml"); |
NewerOlder