Manipulate font size

Created using FusionCharts Suite XT - www.fusioncharts.com

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>
<!-- Sample for : Stacked Column Chart. This sample is showing product category wise revenue for current year using Stacked Column 2D Chart. -->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function () {
    var myChart = new FusionCharts({
        "type": "stackedcolumn3dlinedy",
            "dataFormat": "json",
            "renderAt": "chart-container",
            "width": "500",
            "height": "300",
            "dataSource": {
            "chart": {
                "caption": "Product-wise Quarterly Revenue vs. Profit %",
                    "subCaption": "Harry's SuperMart - Last Year",
                    "xAxisname": "Quarter",
                    "pYAxisName": "Sales",
                    "sYAxisName": "Profit %",
                //size of x axis name font
                "xAxisNameFontSize": "15",
                //size of primary y axis name font
                "pyAxisNameFontSize": "15",
                //size of secondary y axis name font    
                "syAxisNameFontSize": "15"
            },
                "categories": [{
                //size of data labels in x axis
                "fontSize": "5",
                    "category": [{
                    "label": "Q1"
                }, {
                    "label": "Q2"
                }, {
                    "label": "Q3"
                }, {
                    "label": "Q4"
                }]
            }],
                "dataset": [{
                "seriesname": "Food Products",
                    "data": [{
                    "value": "11000"
                }, {
                    "value": "15000"
                }, {
                    "value": "13500"
                }, {
                    "value": "15000"
                }]
            }, {
                "seriesname": "Non-Food Products",
                    "data": [{
                    "value": "11400"
                }, {
                    "value": "14800"
                }, {
                    "value": "8300"
                }, {
                    "value": "11800"
                }]
            }, {
                "seriesname": "Profit %",
                   ...