我正在使用Jquery Sparkline插件在我的网站上绘制线图,它工作正常,但我想编辑它的工具提示。我阅读了他们官方网站上提供的整个工具提示文档,但没有正面结果。
这是我的代码:
$(".sparkline").each(function () {
var $this = $(this);
$this.sparkline('html', $this.data(), {
type: "line",
tooltipSuffix: " Tweets : "
});
});
我正在策划没有推文与小时图,所以我只想显示“x推文在y小时”,有人可以帮我解决这个问题吗?
答案 0 :(得分:0)
我认为您需要的文档可以在这里找到: http://omnipotent.net/jquery.sparkline/#tooltips
您可以使用tooltipFormat来声明:
tooltipFormat: '{{x}} Tweets at {{y}} hrs',