views:

17

answers:

1

I'm looking to customize the tooltip look of an asp.net chart. Does anyone have a suggestion on where to start looking?

+1  A: 

The tooltip itself is probably implemented through basic HTML. If you want a more sophisticated tooltip, look into jQuery tooltip plugins.

Dave Swersky
@Dave I looked into qtip http://bit.ly/cGIkZF (which is really good with links and maps) but I can't figure out how to implement it with a rendered asp:Chart
cfarm54
@cfarm: You may have to wrap the Chart in a DIV and apply the tooltip to the DIV.
Dave Swersky
@Dave tried that but it only pushes the tooltip outside of the div. I'd like to hover it right where the mouse pointer is.
cfarm54
@cfarm: There are jQuery tooltips that will follow the mouse pointer while it is inside an element...
Dave Swersky
@Dave would you be able to point me to one? I'd really appreciate
cfarm54
http://jquery.bassistance.de/tooltip/demo/
Dave Swersky