如果我们在饼图中进行滚动,则饼图在垂直和水平方向都滚动到屏幕之外。
我也在特定时间点出现黑屏。
有什么解决办法吗?
请帮忙。
如果我们在饼图中进行滚动,则饼图在垂直和水平方向都滚动到屏幕之外。
我也在特定时间点出现黑屏。
有什么解决办法吗?
请帮忙。
You have to add this if you don't want enable the scrolling through the chart:
renderer.setPanEnabled(false);
Also you can let the user scroll the chart and add the zoom buttons, so user can return to the 1:1 view:
renderer.setZoomButtonsVisible(true);
renderer.setZoomEnabled(true);
*renderer is the DefaultRenderer wich you add the series.