さて、私はこれでもう一度やりました- 以前の回答で述べたように、あなたが克服する必要がある最大の問題は、d3-zoomは対称的なスケーリングしか許可しないということです。これは広く議論されてきたことであり、マイクボストックは次のリリースでこれに対処していると思います。
したがって、この問題を解決するには、複数のズーム動作を使用する必要があります。各軸に1つ、プロットエリアに1つ、計3つのチャートを作成しました。XおよびYズーム動作は、軸のスケーリングに使用されます。XおよびYズーム動作によってズームイベントが発生するたびに、それらの移動値がプロットエリア全体にコピーされます。同様に、プロット領域で平行移動が発生すると、xおよびyコンポーネントがそれぞれの軸の動作にコピーされます。
縦横比を維持する必要があるため、プロットエリアでのスケーリングは少し複雑です。これを実現するために、前のズーム変換を保存し、スケールデルタを使用して、XおよびYズーム動作に適用する適切なスケールを計算します。
便宜上、これらすべてをグラフコンポーネントにまとめました。
const interactiveChart = (xScale, yScale) => {
const zoom = d3.zoom();
const xZoom = d3.zoom();
const yZoom = d3.zoom();
const chart = fc.chartCartesian(xScale, yScale).decorate(sel => {
const plotAreaNode = sel.select(".plot-area").node();
const xAxisNode = sel.select(".x-axis").node();
const yAxisNode = sel.select(".y-axis").node();
const applyTransform = () => {
// apply the zoom transform from the x-scale
xScale.domain(
d3
.zoomTransform(xAxisNode)
.rescaleX(xScaleOriginal)
.domain()
);
// apply the zoom transform from the y-scale
yScale.domain(
d3
.zoomTransform(yAxisNode)
.rescaleY(yScaleOriginal)
.domain()
);
sel.node().requestRedraw();
};
zoom.on("zoom", () => {
// compute how much the user has zoomed since the last event
const factor = (plotAreaNode.__zoom.k - plotAreaNode.__zoomOld.k) / plotAreaNode.__zoomOld.k;
plotAreaNode.__zoomOld = plotAreaNode.__zoom;
// apply scale to the x & y axis, maintaining their aspect ratio
xAxisNode.__zoom.k = xAxisNode.__zoom.k * (1 + factor);
yAxisNode.__zoom.k = yAxisNode.__zoom.k * (1 + factor);
// apply transform
xAxisNode.__zoom.x = d3.zoomTransform(plotAreaNode).x;
yAxisNode.__zoom.y = d3.zoomTransform(plotAreaNode).y;
applyTransform();
});
xZoom.on("zoom", () => {
plotAreaNode.__zoom.x = d3.zoomTransform(xAxisNode).x;
applyTransform();
});
yZoom.on("zoom", () => {
plotAreaNode.__zoom.y = d3.zoomTransform(yAxisNode).y;
applyTransform();
});
sel
.enter()
.select(".plot-area")
.on("measure.range", () => {
xScaleOriginal.range([0, d3.event.detail.width]);
yScaleOriginal.range([d3.event.detail.height, 0]);
})
.call(zoom);
plotAreaNode.__zoomOld = plotAreaNode.__zoom;
// cannot use enter selection as this pulls data through
sel.selectAll(".y-axis").call(yZoom);
sel.selectAll(".x-axis").call(xZoom);
decorate(sel);
});
let xScaleOriginal = xScale.copy(),
yScaleOriginal = yScale.copy();
let decorate = () => {};
const instance = selection => chart(selection);
// property setters not show
return instance;
};
これが実際の例のペンです:
https://codepen.io/colineberhardt-the-bashful/pen/qBOEEGJ