gpt4 book ai didi

sparklines - Jquery 迷你图 : Possible to have different tooltips?

转载 作者:行者123 更新时间:2023-12-05 00:30:16 24 4
gpt4 key购买 nike

我正在使用 JQuery Sparklines ( http://omnipotent.net/jquery.sparkline ) 来显示折线图,其中图中的每个刻度对应于当天的一个小时间隔。我已将工具提示格式化为:

<span style=\"color: {{color}}\">&#9679;</span> {{offset:names}} - {{y}}{{suffix}}</span>

哪里 offset:names对应于一天中的小时 (0 = 00:00, 1 = 01:00) 等。

图表随着实时数据更新。问题是,如果某个点在 future ,我不想在工具提示中显示 {{y}} 值 - 只是一天中的时间。是否有可能做到这一点?如果没有,还有其他方法可以获得相同的效果吗?

最佳答案

找到了!使用 tooltipFormatter,我做了这样的事情:

sparkOpts.CurrentTimeGroup = currentTimeGroup;
sparkOpts.tooltipFormatter = function(sparklines, options, point)
{
if(point.x <= options.mergedOptions.CurrentTimeGroup)
return "<div class=\"jqsfield\"><span style=\"color: " + point.color + "\">&#9679;</span>" + options.get("tooltipValueLookups").names[point.x] + " - " + point.y + options.get("tooltipSuffix") + "</div>";
else
return "<div class=\"jqsfield\"><span style=\"color: " + point.color + "\">&#9679;</span>" + options.get("tooltipValueLookups").names[point.x] + "</div>";
};

关于sparklines - Jquery 迷你图 : Possible to have different tooltips?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16348958/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com