Jquery Flot Draws Points In 200% Thought It Says The Value Is 100%
I am using flot library to draw a chart. this is my code: function LoadService2() {      $.getJSON('http://localhost:4025/vmp_webservice.asmx/LoadService2',       { fromDate: '2014
Solution 1:
You are stacking your graphs
...
series: {
    stack: true,
...
Try setting stack to false:
...
series: {
    stack: false,
...
It's a bit difficult to say as the documentation from flot about their options isn't perfect but this might help.
Post a Comment for "Jquery Flot Draws Points In 200% Thought It Says The Value Is 100%"