Table API

Set Relative Position
MoveTable
Set Font
Set Header Background Color
Set Table Width
Set Column Width
Set Table Visible
Getting Exception?

Set Relative Position

ITable hTable = chart.gethTable ();
hTable.setRelativePosition (QbChart.RIGHT);  // or QbChart.DOWN
Move Table
// Reposition Table, dimension in pixels
hTable.moveTable (500, 135);
// or you can use the setPosition method to specify the relative position
hTable.setPosition (new Postion(0.0f, 1.0f));
Set Font
For information on Set Font, please refer to Set Font in Axis Label API.

Set Header Background Color

hTable.setHeaderBackgroundColor(Color.yellow);
Set Table Width
hTable.setTableWidth(500);  // pixels
Set Column Width
// column index starts at 0, (colIndex int, pixelWidth int)
// For example, set 2nd column to a pixel width of 50.
hTable.setColumnWidth(1, 50);
Set Table Visible
hTable.setVisible(true);
Getting Exception?
For information on Getting Exception, please refer to getPosition.

Please refer to ITable in EspressChart APIDocs for additional information.