// Create a new workbook Workbook workbook = new Workbook(); IWorksheet worksheet = workbook.getWorksheets().get(0); IShape shape = worksheet.getShapes().addChart(ChartType.ColumnClustered, 250, 20, 360, 230); worksheet.getRange("A1:D6").setValue(new Object[][]{ {null, "S1", "S2", "S3"}, {"Item1", 10, 25, 25}, {"Item2", -20, 36, 27}, {"Item3", 62, 70, -30}, {"Item4", 22, 65, 65}, {"Item5", 23, 50, 50} }); shape.getChart().getSeriesCollection().add(worksheet.getRange("A1:D6"), RowCol.Columns, true, true); //config chart title style shape.getChart().setHasTitle(true); shape.getChart().getChartTitle().setText("MyChartTitle"); shape.getChart().getChartTitle().getFont().setSize(15); shape.getChart().getChartTitle().getFont().setName("Bradley Hand ITC"); shape.getChart().getChartTitle().getFormat().getFill().getColor().setRGB(Color.GetDarkOrange()); shape.getChart().getChartTitle().getFormat().getLine().getColor().setRGB(Color.GetCornflowerBlue()); shape.getChart().getChartTitle().getFormat().getLine().setWeight(1.5); // Save to an excel file workbook.save("ConfigChartTitleStyle.xlsx");
// Create a new workbook var workbook = Workbook() val worksheet = workbook.worksheets.get(0) val shape = worksheet.shapes.addChart(ChartType.ColumnClustered, 250.0, 20.0, 360.0, 230.0) worksheet.getRange("A1:D6").value = arrayOf(arrayOf(null, "S1", "S2", "S3"), arrayOf("Item1", 10, 25, 25), arrayOf("Item2", -20, 36, 27), arrayOf("Item3", 62, 70, -30), arrayOf("Item4", 22, 65, 65), arrayOf("Item5", 23, 50, 50)) shape.chart.seriesCollection.add(worksheet.getRange("A1:D6"), RowCol.Columns, true, true) //config chart title style shape.chart.hasTitle = true shape.chart.chartTitle.text = "MyChartTitle" shape.chart.chartTitle.font.size = 15.0 shape.chart.chartTitle.font.name = "Bradley Hand ITC" shape.chart.chartTitle.format.fill.color.rgb = Color.GetDarkOrange() shape.chart.chartTitle.format.line.color.rgb = Color.GetCornflowerBlue() shape.chart.chartTitle.format.line.weight = 1.5 // Save to an excel file workbook.save("ConfigChartTitleStyle.xlsx")