2017-11-14 5 views
1

私はAngular 4アプリケーションでd3js V4グラフを作成しようとしています。グラフには、いくつかのデータセットが別々の行として表示されます。d3jsは線グラフ上でズームを行います

(X軸でのみ)ズームが正しく動作するようにする方法がわかりません。

zoomed()機能は私が既になぜそれが機能しないのかを説明してくれたすべてのものです。

createChart() { 
    const element = this.chartContainer.nativeElement; 
    this.width = element.offsetWidth - this.margin.left - this.margin.right; 
    this.height = element.offsetHeight - this.margin.top - this.margin.bottom; 

    // canvas 
    const svg = d3.select(element).append('svg') 
       .attr('width', element.offsetWidth) 
       .attr('height', element.offsetHeight); 

    // chart plot area 
    this.chart = svg.append('g') 
       .attr('transform', 'translate(' + this.margin.left + ',' + this.margin.top + ')'); 

    // domains 
    const xDomain = [this.from, this.to]; 
    const yDomain = [0, 100]; 

    // scales 
    this.xScale = d3.scaleTime().domain(xDomain).range([0, this.width]); 
    this.yScale = d3.scaleLinear().domain(yDomain).range([this.height, 0]); 

    // "data" function to draw lines 
    this.valueline = d3.line<TimeValueObject>() 
     .curve(d3.curveStepBefore) 
     .x((d) => this.xScale(d.time)) 
     .y((d) => this.yScale(d.value)); 

    // X Axis 
    this.xAxis = this.chart.append('g') 
     .attr('class', 'xaxis') 
     .attr('transform', 'translate(0,' + this.height + ')') 
     .call(d3.axisBottom(this.xScale) 
      .ticks(this.xTicks) 
      .tickFormat(function (d) { return moment.utc(d).format(this.timeFormat); })); 

    // Y Axis 
    this.yAxis = this.chart.append('g') 
     .attr('class', 'yaxis') 
     .call(d3.axisLeft(this.yScale) 
      .ticks(this.yTicks)); 

    // zoom 
    const zoom = d3.zoom() 
       .on('zoom', this.zoomed.bind(this)); 

    this.chart.call(zoom); 
} 

addData(myDataObject) { 
    // Add a data valueline path 
    this.chart.append('path') 
     .attr('class', 'line') 
     .attr('stroke', myDataObject.strokeStyle) 
     .attr('id', myDataObject.name) 
     .attr('d', this.valueline(myDataObject.data)); 
} 

zoomed() { 
    //KO: Zoom applied to whole graph in every direction. 
    //this.chart.attr('transform', d3.event.transform); 

    //KO: Zoom applied to whole graph 
    // this.chart 
    //  .attr('transform', 'translate(' + d3.event.transform.x + ',0) scale(' + d3.event.transform.k + ',1)'); 

    //KO: Zoom applied to data but data not redrawn. Shows pixellated garbage at high zoom 
    //Besides: when zoomed, the data expands beyond chart limits (Y axis on the left and chart right edge) 
    //for (let [key, value] of this.dataObjects) { 
    // this.chart.select('#' + key + '') 
    //  .attr('transform', 'translate(' + d3.event.transform.x + ',0) scale(' + d3.event.transform.k + ',1)'); 
    //} 

    //KO: zoom is "elastic": 
    // - On first mousewheel, nothing happens 
    // - On second mousewheel, graph zooms in the direction of previous mousewheel 
    // - Example: If I 'mousewheelup' 3 times in a row, I will have to 'mousewheeldown' 8 times to get back to zero zoom. The graph will keep zooming instead of unzooming on the 3 first 'mousewheeldown' 
    //Besides: when zoomed, the data expands beyond chart limits (Y axis on the left and chart right edge) 
    //for (let [key, value] of this.dataObjects) { 
    // this.chart.select('#' + key + '') 
    //  .attr('d', this.valueline(value.data)); 
    //} 

    //X Axis zoom 
    const t = d3.event.transform; 
    this.xScale = t.rescaleX(this.xScale); //if I comment this line, no zoom occurs whatsoever 
    //this.xAxis.call(d3.axisBottom(this.xScale)); //will cause 'elastic' axis zoom 
} 

異なるコード試みが "公式" の例に基づいている:https://github.com/d3/d3-zoom

答えて

0

最後に解決策を見つけました。

d3ズームイベントの値は、最初のズームに対して、常にが与えられ、以前のズームとは異なります。

だから、まず、スケールがスケールを変換することにより、調整する必要があります。

const t = d3.event.transform; 
this.xScale.domain(t.rescaleX(this.xScaleOriginal).domain()); 

→が


その後、元のスケールのコピーを作成する必要がありました、x軸が可能再描画:

this.xAxisElement.call(this.xAxis); 

→ xA


最後に、データ線を再描画することができる 添付軸要素のd3.axisBottom()関数の結果とxAxisElementためXIS:これは非修飾である

for (let [key, value] of this.dataObjects) { 
    this.chart.select('#' + key + '') 
     .attr('d', this.valueline(value.data)); 
} 

関連する問題