Example:
# Instantiating a Workbook object
workbook = Workbook()
# Obtaining the reference of the first worksheet
worksheet = workbook.getWorksheets().get(0)
# Adding a sample value to "A1" cell
worksheet.getCells().get("A1").putValue(50)
# Adding a sample value to "A2" cell
worksheet.getCells().get("A2").putValue(100)
# Adding a sample value to "A3" cell
worksheet.getCells().get("A3").putValue(150)
# Adding a sample value to "B1" cell
worksheet.getCells().get("B1").putValue(60)
# Adding a sample value to "B2" cell
worksheet.getCells().get("B2").putValue(32)
# Adding a sample value to "B3" cell
worksheet.getCells().get("B3").putValue(50)
# Adding a chart to the worksheet
chartIndex = worksheet.getCharts().add(ChartType.COLUMN, 5, 0, 25, 10)
# Accessing the instance of the newly added chart
chart = worksheet.getCharts().get(chartIndex)
# Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
chart.getNSeries().add("A1:B3", True)
chart.setShowDataTable(True)
# Getting Chart Table
chartTable = chart.getChartDataTable()
# Setting Chart Table Font Color
chartTable.getFont().setColor(Color.getRed())
# Setting Legend Key Visibility
chartTable.setShowLegendKey(False)
# Saving the Excel file
workbook.save("Book1.xls")
| Property Getters/Setters Summary | ||
|---|---|---|
method | getAutoScaleFont() | |
method | setAutoScaleFont(value) | |
| True if the text in the object changes font size when the object size changes. The default value is True. | ||
method | getBackground() | |
method | setBackground(value) | |
| Gets and sets the display mode of the background The value of the property is BackgroundMode integer constant. | ||
method | getBackgroundMode() | |
method | setBackgroundMode(value) | |
| Gets and sets the display mode of the background The value of the property is BackgroundMode integer constant. | ||
method | getBorder() | |
Returns a Border object that represents the border of the object
|
||
method | getFont() | |
Gets a |
||
method | hasBorderHorizontal() | |
method | setHasBorderHorizontal(value) | |
| True if the chart data table has horizontal cell borders | ||
method | hasBorderOutline() | |
method | setHasBorderOutline(value) | |
| True if the chart data table has outline borders | ||
method | hasBorderVertical() | |
method | setHasBorderVertical(value) | |
| True if the chart data table has vertical cell borders | ||
method | getShowLegendKey() | |
method | setShowLegendKey(value) | |
| True if the data label legend key is visible. | ||
Font getFont()
boolean getAutoScaleFont() / setAutoScaleFont(value)
int getBackgroundMode() / setBackgroundMode(value)
int getBackground() / setBackground(value)
boolean hasBorderHorizontal() / setHasBorderHorizontal(value)
boolean hasBorderVertical() / setHasBorderVertical(value)
boolean hasBorderOutline() / setHasBorderOutline(value)
boolean getShowLegendKey() / setShowLegendKey(value)