angular-nvd3 sparkline和trailing currentValue number

时间:2016-01-18 21:13:20

标签: angularjs d3.js nvd3.js

我刚刚开始了解nvd3。我实际上使用angular-nvd3来构建一个迷你图。我没有找到一个选项是如何摆脱尾随currentValue。我认为showValues可能是它,但我实际上没有看到差异。

这款羽毛球用" 23"在它的末尾,指示最后一个值。这就是我想要摆脱的东西。

http://plnkr.co/edit/CcLayxryGZJGc5vBNpyB?p=preview

$scope.options = {
    chart: {
      type: 'sparklinePlus',
      height: 300,
      showValues: false
    }
  };

任何帮助?

2 个答案:

答案 0 :(得分:0)

将此添加到样式以隐藏最后一个值

使用文本标签无显示组。

    <style>
.nv-valueWrap {display:none;}

</style>

工作代码here

答案 1 :(得分:0)

只需设置未记录的*选项showLastValue

$scope.options = { chart: { type: 'sparklinePlus', height: 300, showLastValue: false, } };

*我在依赖库nvds http://nvd3-community.github.io/nvd3/examples/documentation.html

中针对LineChart的“新”文档中找到了这一点

这是一个有效的示例: http://plnkr.co/edit/310OK7vgHuxcXj0GWkpc?p=preview