jQuery Flot Bindings

Assembly
WebExtras.dll
Namespace
WebExtras.JQFlot
Dependancies
  • Appropriate third party libraries
  • webextras.gumby.css
Steps involved in creating a Flot graph

Slightly modifying our series we get...


  FlotSeries serie = new FlotSeries
  {
    label = "Sample Bar Graph",
    data = graphData,
    dashes = new BarGraph { show = true }                 // This will denote that you want a Bar graph
  };
  

And we have a bar graph...