1

如果我们在饼图中进行滚动,则饼图在垂直和水平方向都滚动到屏幕之外。
我也在特定时间点出现黑屏。

有什么解决办法吗?
请帮忙。

4

1 回答 1

2

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.

于 2013-03-03T22:55:07.310 回答