Show space at the right side of the canvas

http://forum.fusioncharts.com/topic/16742-setting-space-only-at-right-side-of-the-chart/

by Nabajeet Sonowal

HTML

<script src="http://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/fusioncharts.charts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js"></script>
<!-- Div lines break up the y-axis into smaller units helping in better visual data interpretation. Attributes : 1. divlineAlpha 2. divlineColor 3. divlineThickness 4. divLineIsDashed 5. divLineDashLen 6. divLineGapLen Note: All the above attributes are defined in 'fint' theme file, which the chart in this fiddle uses. Only divLineIsDashed and divlineAlpha attributes are overwritten to make the divlines more prominent. -->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function () {
    var vstrChart = new FusionCharts({
        type: 'msline',
        renderAt: 'chart-container',
        width: '450',
        height: '300',
        dataFormat: 'json',
        dataSource: {
            "chart": {
                "caption": "Website Visitors",
                    "subCaption": "Last week Vs This week",
                    "xAxisName": "Day",
                    "yAxisName": "No. of Visitors",
                    "theme": "fint",
                    "showValues": "0"
            },
                "categories": [{
                "category": [{
                    "label": "Mon"
                }, {
                    "label": "Tue"
                }, {
                    "label": "Wed"
                }, {
                    "label": "Thu"
                }, {
                    "label": "Fri"
                }, {
                    "label": "Sat"
                }, {
                    "label": "Sun"
                }, {
                    "label": "Space",
                        "ShowLabel": "0"
                }
                ]
            }],

                "dataset": [{
                "seriesname": "Last Week",
                    "data": [{
                    "value": "13000"
                }, {
                    "value": "14500"
                }, {
                    "value": "13500"
                }, {
                    "value": "15000"
                }, {
                    "value": "15500"
                }, {
                    "value": "17650"
                }, {
                    "value": "19500"
                }]
            }, {
                "seriesname": "This Week",
                    "data": [{
                    "value": "15400"
                }, {
                    "value": "16800"
                }, {
                    "value": "18800"
                }, {
                    "value": "22400"
                }, {
                    "value": "23800"
 ...