Set SizeCanvas
Set Position
Set Gridlines Visible
Border Raised, Lowered, or Shadowed
Background Color
Background Control Area
Border Visible/Border Color
// create an ICanvas object, “hCanvas”, that
// has a handle on the chart’s Canvas
ICanvas hCanvas = chart.gethCanvas();
// create an IPlot object, “hChartPlot”, that
// has a handle on the chart's plot
IPlot hChartPlot = chart.gethChartPlot();
// set the horizontal gridlines visible, and to blue color
chart.gethYAxis().setGridVisible(true);
chart.gethYAxis().setGridColor( Color.blue);