Is it possible to automatically zoom out to avoid overflow ? Or make the chart scrollable horizontally with a scroll bar ? Here's my case, when screen is small and there are many nodes :
I have disabled any moving or zooming because I don't want to let user move chart, I just want to show it entirely
Hello,
Is it possible to automatically zoom out to avoid overflow ? Or make the chart scrollable horizontally with a scroll bar ? Here's my case, when screen is small and there are many nodes :
I have disabled any moving or zooming because I don't want to let user move chart, I just want to show it entirely
this.chartReference.getChartState().svg.on('wheel.zoom', null) this.chartReference.getChartState().svg.on('touchstart.zoom', null) this.chartReference.getChartState().svg.on('touchmove.zoom', null) this.chartReference.getChartState().svg.on('touchend.zoom', null) this.chartReference.getChartState().svg.on('mousedown.zoom', null)
Thanks