int right = displayerSettings.getChartMarginRight();
int chartWidth = width-right-left;
int chartHeight = height-top-bottom;
ChartArea chartArea = ChartArea.create();
chartArea.setLeft(left);
chartArea.setTop(top);
chartArea.setWidth( chartWidth );
chartArea.setHeight( chartHeight );
return chartArea;
}