仅覆盖填充工具提示文本

时间:2015-09-16 21:01:26

标签: dimple.js

如何在保留所有其他格式的同时覆盖工具提示的标签/值?

我尝试合并以下示例并且能够覆盖文本,但格式化始终遵循示例。我最终得到了不适合我的svg的粗略箭头或文本位于右上角。

  1. http://dimplejs.org/advanced_examples_viewer.html?id=advanced_custom_styling
  2. http://dimplejs.org/advanced_examples_viewer.html?id=advanced_bars_sketchy
  3. http://annapawlicka.com/pretty-charts-with-dimple-js/

1 个答案:

答案 0 :(得分:1)

这是我最终使用的代码。

series.getTooltipText = function (e) {
    var capitalized_metric = metric.charAt(0).toUpperCase() + metric.substring(1) + "s";
    return [
        "Date: " + moment(e.x).format("MM/DD/YYYY"),
        capitalized_metric + ": " + e.y
    ];
};