OnMouseover - 带有 C3 库的特定系列的隐藏工具提示

OnMouseover - Hidden Tooltip for a particular series with C3 library

我有一个带有两条简单线条的折线图,我必须能够隐藏特定系列的工具提示(呈现一条不可选择的线条)。是否可以通过提供的一些 api 来实现它?

我正在努力培养我的特殊行为:

onmouseover: function (d, node){
                if (d.id=="Requested")
                {
                    __  what here?
                }
            }

我通过在内容生成器中添加 if 语句解决了这个问题。

tooltip: 
        {

            contents: function (d, defaultTitleFormat, defaultValueFormat, color) 
            {
                var $$ = this, config = $$.config, CLASS = $$.CLASS,
                titleFormat = config.tooltip_format_title || defaultTitleFormat,
                nameFormat = config.tooltip_format_name || function (name) { return name; },
                valueFormat = config.tooltip_format_value || defaultValueFormat,
                text, i, title, value, name, bgcolor;

            // You can access all of data like this:

                var count=0;
                for (i = 0; i < d.length; i++) 
                {

                    **if (d[i].id=="Requested")** {
                    if (! (d[i] && (d[i].value || d[i].value === 0))) { continue; }

                    // ADD



                    if (! text) 
                    {

                        var formats=d3.time.format('%Y%m%d');
                        var date= new Date(formats.parse(scene[d[i].index].date));

                        title = date.getDate()+"/"+date.getMonth()+1+"/"+date.getFullYear();
                        text = "<table class='" + CLASS.tooltip + "'>" + (title || title === 0 ? "<tr><th colspan='2'>" + title + "</th></tr>" : "");
                    }


                      }//if requested
                }