可以从图例和图表段中激活jqplot鼠标悬停/突出显示吗?

时间:2014-01-26 17:44:47

标签: jqplot

有时我的细分受众群太小,无法看到足够的点击/鼠标悬停。是否可以通过将鼠标悬停在关联的图例上来触发图表上的鼠标悬停?

我的传奇&自定义荧光笔代码:

            legend: {
                renderer: $.jqplot.EnhancedLegendRenderer,
                show: true,
                location: 's',
                placement: 'insideGrid',
                rendererOptions: {
                    numberRows: 2
                }
            },
            highlighter: {
                show: true,
                tooltipLocation: 'sw',
                useAxesFormatters: false,
                tooltipAxes: 'y',
                yvalues: 3,
                formatString: '<table class="jqplot-highlighter">' +
                    '<tr><td>Impact:</td><td>%s</td></tr>' +
                    '<tr><td>Percentage:</td><td>%s</td></tr>' +
                    '<tr><td>Actual:</td><td>%s</td></tr></table>'
            }

工作得很漂亮,如果可能的话,还想从传奇中激活一下吗?

1 个答案:

答案 0 :(得分:0)

你可以为.jqplot-table-legend-label或其他一些选择器定义你自己的事件处理程序,然后在那里做你需要的任何事情。