jQuery Flot Bindings
  
    
    
      
        Namespace
      
      
        WebExtras.JQFlot
      
     
   
  
    
      Dependancies
    
    
      
        - Appropriate third party libraries
 
        - webextras.bootstrap3.css
 
      
     
   
 
  
    Steps involved in creating a Flot graph
    
      - Creating the graph options
 
      - Creating graph data
 
      - Creating the graph series
 
      - Rendering the graph
 
    
   
 
  Slightly modifying our series we get...
  
  FlotSeries serie = new FlotSeries
  {
    label = "Sample Bar Graph",
    data = graphData,
    dashes = new BarGraph { show = true }                 
  };
  
 
  And we have a bar graph...