Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在用户放大\缩小或平移图表后,有没有办法重新居中图表?我想让用户能够让图表恢复到原来的缩放和平移视图。用例是如果他们完全放大或远离图表线。
如果您这样做renderer.setZoomButtonsVisible(true),您将在屏幕右下方看到三个按钮。其中之一可以满足您的需要。
renderer.setZoomButtonsVisible(true)
否则,您可以调用chartView.zoomReset()以便以编程方式触发它。
chartView.zoomReset()