2013-10-25 42 views
6

NVD3で線グラフを縦線で生成しようとしています。特にthis kindの折れ線グラフ。NVD3線グラフ(垂直線)

ラインチャートには、表示パネルとズームパネルの2つのパネルがありますが、その両方の線が必要です。

このような何か: enter image description here

は、この可能ですか?

編集: データを追加するだけで、行を表すストリームが追加されました。例えば

streams[3] = {key:'myline', values:[{x:68,y:0},{x:68,y:7}]} 

良い方法はありますか?

+0

コードに手動で行を追加することもできますが、これはおそらく簡単です。 –

+0

あなたはより良い解決策を手に入れましたか? – Dinesh

+0

@ by0こんにちは、あなたはそれをやった方法についていくつかのコードを投稿してください。ありがとう。折れ線グラフでも同様の機能が必要です。 –

答えて

3

はい、それは、可能です。ここ

がそれを行う方法の例です: https://gist.github.com/timelyportfolio/80d85f78a5a975fa29d7#file-code-r

ここソリューションはNVD3を使用して垂直線を描画するJavaScript関数(慎重なコメントを読んで)追加することです。

function drawVerticalLines(opts) { 

    // CAREFUL HERE !!! the css pasth ".nvd3 .nv-focus .nv-linesWrap" depends on the type of chart you are using, lineChart would use only ".nvd3 .nv-linesWrap" ... ! 
    if (!(d3.select('#' + opts.id + ' the css pasth ".nvd3 .nv-focus .nv" depends on the type of chart you are using, lineChart would use only -linesWrap').select('.vertical-lines')[0][0])) { 
    // Adds new g element with .vertical-lines class; use a css debugger to verify 
    d3.select('#' + opts.id + ' .nvd3 .nv-focus .nv-linesWrap').append('g') 
     .attr('class', 'vertical-lines') 
    } 

    vertLines = d3.select('#' + opts.id + ' .nvd3 .nv-focus .nv-linesWrap').select('.vertical-lines').selectAll('.vertical-line') 
    .data(
     [{ 
     'date': new Date('1967-11-30'), 
     'label': 'something to highlight 1967' 
     }, { 
     'date': new Date('2001-11-30'), 
     'label': 'something to highlight 2001' 
     }]) 

    var vertG = vertLines.enter() 
    .append('g') 
    .attr('class', 'vertical-line') 

    vertG.append('svg:line') 
    vertG.append('text') 

    vertLines.exit().remove() 

    // CAREFUL 2 : chart.xAxis.scale() scale depends how you are defining your x Axis in nvd3 chart ... if your are using timestamps, (d.date/60/60/24/1000) becomes (d.date) 

    vertLines.selectAll('line') 
    .attr('x1', function(d) { 
     return chart.xAxis.scale()(d.date/60/60/24/1000) 
    }) 
    .attr('x2', function(d) { 
     return chart.xAxis.scale()(d.date/60/60/24/1000) 
    }) 
    .attr('y1', chart.yAxis.scale().range()[0]) 
    .attr('y2', chart.yAxis.scale().range()[1]) 
    .style('stroke', 'red') 

    vertLines.selectAll('text') 
    .text(function(d) { 
     return d.label 
    }) 
    .attr('dy', '1em') 
    //x placement ; change dy above for minor adjustments but mainly 
    // change the d.date/60/60/24/1000 
    //y placement ; change 2 to where you want vertical placement 
    //rotate -90 but feel free to change to what you would like 
    .attr('transform', function(d) { 
     return 'translate(' + 
     chart.xAxis.scale()(d.date/60/60/24/1000) + 
     ',' + 
     chart.yAxis.scale()(2) + 
     ') rotate(-90)' 
    }) 
    //also you can style however you would like 
    //here is an example changing the font size 
    .style('font-size', '80%') 

} 

そしてnv.addGraphコールバックでこのメソッドを呼び出す:

var sharedChart = null; // Shared reference on the chart 

nv.addGraph(function() { 
     ..... 

     sharedChart = chart; 

     return chart; 

     , 
     function() { 
     drawVerticalLines(opts, sharedChart); 
     } 
    ); 
をOPTS ...(明らかにあなたが本当にそれを必要としない)で

var opts${widgetID.replace('-', '0')} = { 
     "dom": "chart${widgetID}", 
     "width": 800, 
     "height": 400, 
     "x": "date", 
     "y": "value", 
     "group": "variable", 
     "type": "lineWithFocusChart", 
     "id": "chart${widgetID}" 
    }; 

希望これはそれを見つけ、それを動作させるために、私には非常に長い時間がかかった、助け!

関連する問題