Set Relative
Position
MoveTable
Set Font
Set Header
Background Color
Set Table
Width
Set Column
Width
Set Table
Visible
Getting
Exception?
ITable hTable = chart.gethTable ();Move Table
hTable.setRelativePosition (QbChart.RIGHT); // or QbChart.DOWN
// Reposition Table, dimension in pixelsSet Font
hTable.moveTable (500, 135);
// or you can use the setPosition method to specify the relative position
hTable.setPosition (new Postion(0.0f, 1.0f));
hTable.setHeaderBackgroundColor(Color.yellow);Set Table Width
hTable.setTableWidth(500); // pixelsSet Column Width
// column index starts at 0, (colIndex int, pixelWidth int)Set Table Visible
// For example, set 2nd column to a pixel width of 50.
hTable.setColumnWidth(1, 50);
hTable.setVisible(true);Getting Exception?
Please refer to ITable
in EspressChart APIDocs for additional information.