Reputation: 14370
This is my fiddle code http://jsfiddle.net/coderslay/WnC9B/44/
It is successfully plotting the graph. The problem which i am facing is that it is showing the value of two(one of the legends in the graph) below the red line even if i specify it to zero. Why is this happeneing?
Upvotes: 0
Views: 654
Reputation: 108512
Under the bars option, set the lineWidth to 0:
bars : {
fill : 1,
show: true,
barWidth: 0.7,
lineWidth: 0
}
Upvotes: 1