HumbleSoftware / Flotr2

Graphs and Charts for Canvas in JavaScript.
http://www.humblesoftware.com/flotr2/
MIT License
2.45k stars 528 forks source link

mouse lineColor, remove line #181

Open sdrib opened 11 years ago

sdrib commented 11 years ago

Is it possible to remove the line with mouse hover and only use the fillColor? I tried:

mouse: {
                                    track: true,
                                    relative: true,
                                    lineColor: false, //also tried "null"
                                    fillColor: '#004BD5',
                                    fillOpacity: 0.8
}

But the feature does not seem to be in place looking through the code either. Am I wrong?

girija45701 commented 11 years ago

linecolor : null does work for me

sdrib commented 11 years ago

It does? That is exactly what I tried. When I do that the fillColor stops working too.

bornered commented 11 years ago

What type of chart are you using. I am also having issues with this on a pie chart.

sdrib commented 11 years ago

@edwardborner bar charts, horizontal ones

cesutherland commented 11 years ago

Try

mouse : {
  lineColor : 'rgba(0,0,0,0)'
}