我正在使用 nvd3 的 piechart.js 组件在我的网站上生成饼图。提供的 .js 文件包括几个 var,如下:
var margin = {top: 30, right: 20, bottom: 20, left: 20}
    , width = null
    , height = null
    , showLegend = true
    , color = nv.utils.defaultColor()
    , tooltips = true
    , tooltip = function(key, y, e, graph) {
        return '<h3>' + key + '</h3>' +
               '<p>' +  y + '</p>'
      }
    , noData = "No Data Available."
    , dispatch = d3.dispatch('tooltipShow', 'tooltipHide')
;
在我的内联 js 中,我已经能够覆盖其中的一些变量,例如(覆盖 showLegend 和 margin):
var chart = nv.models.pieChart()
    .x(function(d) { return d.label })
    .y(function(d) { return d.value })
    .showLabels(false)
    .showLegend(false)
    .margin({top: 10, right: 0, bottom: 0, left: 0})
    .donut(true);
我试过以同样的方式覆盖工具提示:
.tooltip(function(key, y, e, graph) { return 'Some String' })
但是当我这样做时,我的饼图根本不显示。为什么我不能在这里覆盖工具提示?我还有其他方法可以这样做吗?我真的宁愿根本不必编辑 piechart.js 本身;我需要保持该文件通用,以便在多个小部件中使用。
当我们这样做的时候,有什么方法可以让整个工具提示变成一个可点击的链接?