FusionCharts lets you define various paddings and margins. We will explain each of them.
By default, FusionCharts provides some padding between the chart border and the canvas. This is called the chart margin and each of the margins - left, right, top, bottom, can be set individually.
Amount of empty space that you want on the left side of your chart is called chart left margin. Nothing is rendered in this space. The XML used to configure the same is:
<chart chartLeftMargin="15">
Amount of empty space that you want on the right side of your chart. The XML used to configure the same is:
<chart chartRightMargin="15">
Amount of empty space that you want on the top of your chart. The XML used to configure the same is:
<chart chartTopMargin="10">
Amount of empty space that you want on the bottom of your chart. The XML used to configure the same is:
< chart chartBottomMargin="10">
This attribute lets you define the space between the caption of the chart and the top of the chart canvas. But when you have a sub-caption defined in the chart, it controls the space between the sub-caption and the top of the chart canvas.
The XML for the above image is as follows:
<chart captionPadding="15">
Using this, you can set the distance between the top of x-axis title and the bottom of data labels (or canvas, if data labels are not shown).
The XML for the above image is as follows:
<chart xAxisNamePadding="10">
The padding that you want to set between the y-axis name and values.
The XML for the above image is as follows:
<chart yAxisNamePadding="10">
The padding that you want to set between the left-end of the chart canvas and the y-axis values.
The XML for the above image is as follows:
<chart yAxisValuesPadding="5">
This attribute sets the vertical space between the canvas bottom edge and the data labels.
The XML for the above image is as follows:
<chart labelPadding="3">
This attribute controls the space between your columns/anchors and the value text boxes.
The XML for the above image is as follows:
<chart valuePadding="3" >
For a line/area chart, the padding between the canvas border and the position where the line/area chart begins to draw is called canvas padding.
The XML for the above image is as follows:
<chart canvasPadding="30" >