javascript - custom a tooltipContent of tooltips with datum in discreteBarChart nvd3.js - Stack Overflow

How I can custom a tooltipContent of tooltips using data loaded into "datum" in discreteBarCh

How I can custom a tooltipContent of tooltips using data loaded into "datum" in discreteBarChart nvd3.js?, for example, with the following data Jason, I want to see data3, data4, Data5 in tooltips

JsonData = [ 
             {
               key: "Serie1",
               values: [
                         {'Data1':  1, 
                          'Data2':  2, 
                          'Data3':  3,
                          'Data4':  4,
                          'Data5':  5
                         }
                       ]
             }
           ];

How I can custom a tooltipContent of tooltips using data loaded into "datum" in discreteBarChart nvd3.js?, for example, with the following data Jason, I want to see data3, data4, Data5 in tooltips

JsonData = [ 
             {
               key: "Serie1",
               values: [
                         {'Data1':  1, 
                          'Data2':  2, 
                          'Data3':  3,
                          'Data4':  4,
                          'Data5':  5
                         }
                       ]
             }
           ];
Share Improve this question edited Apr 2, 2014 at 12:03 Fernando Montoya asked Mar 28, 2014 at 12:51 Fernando MontoyaFernando Montoya 2511 gold badge3 silver badges12 bronze badges 2
  • This is a contribution – Fernando Montoya Commented Mar 30, 2014 at 17:50
  • Ok, thanks and sorry. now change the post. – Fernando Montoya Commented Mar 31, 2014 at 6:35
Add a ment  | 

2 Answers 2

Reset to default 7

This is how to do it:

nv.addGraph(function() {  
   var chart = nv.models.discreteBarChart()
      .x(function(d) { return d.Data1 })
      .y(function(d) { return d.Data2 })
      .tooltips(true)
      .tooltipContent(function(key, y, e, graph) {
       var data =graph.series.values[y-1];
       return  '<p> Text1: ' +  data.Data3 + '</p>'
             + '<p> Text2: ' +  data.Data4 + '</p>'
             + '<p> Text3: ' +  data.Data5 + '</p>'
       });

   d3.select('#chart svg')
      .datum(JsonData)
      .call(chart);

   nv.utils.windowResize(chart.update);

   return chart;
});

I came up with something like this, since the graph object has a value attribute:

chart.tooltipContent(function (key, date, e, graph) {
     var value = graph.value;
     return  "<p><strong>" + date + "</strong><br>" + value + "</p>";
});

No need for accessing the series-array I guess.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743613226a4478592.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信