tooltip plugin for wonderful Flot plotting library
Check https://code.google.com/p/flot/ for Flot details.
Works also with Time series data and supports Date formatting in the same way as Flot itself.
You can fully define content of tip (with values precision) and you can use HTML tags too.
Flot Tooltip can be easily customized with CSS. Just do what you want with #flotTip
in your stylesheet.
Check examples folder for details of how to use it.
Download and include on your page after main jquery.flot library:
Important! You need to set flot option hoverable
to true
if you want flot.tooltip plugin to work.
grid: {
hoverable: true
}
In comments there are default values
tooltip: boolean //false
tooltipOpts: {
content: string //"%s | X: %x | Y: %y.2"
dateFormat: string //"%y-%0m-%0d"
shifts: {
x: int //10
y: int //20
},
defaultTheme: boolean //true
}
tooltip
: set totrue
to turn on this plugin (ifgrid.hoverable
is also set totrue
)content
: content of your tooltip, HTML tags are also allowed; use%s
for series label,%x
for X value,%y
for Y value and%p
for percentage value (useful with pie charts using flot.pie plugin)
With%x
,%y
and%p
values you can also use.precision
, for example%x.2
means that value of X will be rounded to 2 digits after the decimal point.dateFormat
: you can use the same specifiers as in Flot, for time mode datashifts
: shift tooltip position regarding mouse pointer forx
andy
, negative values are okdefaultTheme
: plugin have default theme build-in but here you can switch it off and adjust look of tip styling#flotTip
in your CSS
Depreciated in v0.3:
xValText
: you can change text displayed on tooltip related to X value of hovered itemyValText
: the same as above but regarding Y valueseries
: determine if name of series should be displayed in tooltip (if label exists)
- add jquery.flot.pie plugin support, you can display percentage value on tooltip (thx to ismyrnow for pull request)
- add jquery.flot.stack plugin support, values in tooltip are now displayed correctly (issue #3)
- tooltip is appended to
body
, notplaceholder
of graph - changed default values of tip's shifts
- time is formatted when first axis of flot's multi-axes is in time mode (issue #2) (full multi-axes support maybe in the future)
#flotTip
container is initialized only if it does not exist (see new multiple-axes example and re-initialize plot)
- default theme with new option to disable it if you like to add your own styles
Now you can easily set precision of values displayed on tip thanks to enhanced string formatter.
Just put your desired precision after value in format like this %x.precision
,
where precision is a number of digits to appear after the decimal point. It uses number.toFixed(precision)
function internally.
What is more string formatter was rewritten and now is RegExp based.
content: "value of X is %x.1 and value of Y is %y.4 and they belong to '%s' series"
content: "<h4>%s</h4><ul><li>X is %x</li><li>Y is %y.2</li></ul>"
I'd like to introduce string formatter. Now you can easily define how content of your flot.tooltip should look like. You can also use HTML tags!
Just use new option called content
. The following specifiers are supported:
%x
: for X value%y
: for Y value%s
: for series label
From now on also minified version is available.
- many series support with series name on the tooltip
- date and time formatting can be defined when in time mode (using internal plot function)
- tooltip position shift can be defined
Copyright (c) 2011 Krzysztof Urbas (@krzysu).
jquery.flot.tooltip is available under the MIT license.