376377378379380381382383384385386
int[] dim = calcChartDimension(); // Resizing the chart once displayed currently unsupported final View view = chartPanel.getChart().getView(); if(view!=null) view.resize(dim[0], dim[1]); resizeChartArea(view); return view; }
525526527528529530531532533534535