Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To change the chart’s position (X, Y coordinates) and size (height, width), use these Aspose.Cells properties:
Java
Workbook workbook = new Workbook(dataDir + "AsposeChart.xls");
Worksheet worksheet = workbook.getWorksheets().get(0);
// Load the chart from source worksheet
Chart chart = worksheet.getCharts().get(0);
// Resize the chart
chart.getChartObject().setWidth(400);
chart.getChartObject().setHeight(300);
// Reposition the chart
chart.getChartObject().setX(250);
chart.getChartObject().setY(150);
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.