在NVD3行加条形图

时间:2018-06-11 11:47:48

标签: d3.js nvd3.js

当使用NVD3的直线加条形图时,我需要显示每个xAxis点的线标签,而不是工具提示,如下所示:

enter image description here

我需要显示所有三角形所示的值。

以下是我的代码:

rwt.chart.register("nv-line-plus-bar", function(widget) {
  var chart = nv.models.linePlusBarChart().margin({
    top: 10,
    right: 60,
    bottom: 50,
    left: 70
  }).x(function(d, i) {
    return i
  }).y(function(d, i) {
    return d[1]
  }).color(d3.scale.category10().range());

  chart.lines.showLabels(true);
  nv.utils.windowResize(chart.update);

  return chart;
});

任何提示都将不胜感激。

谢谢&问候, 麦克

0 个答案:

没有答案